/* --- css/styles.css (VERSIÓN FINAL: COTIZADOR) --- */

:root {
    /* --- COLORES DE MARCA --- */
    --primary: #ff5722;       /* Naranja */
    --accent: #d4af37;        /* Dorado */
    
    /* --- MODO OSCURO (DEFAULT) --- */
    --bg-body: #0a0a0a;
    --bg-card: #141414;
    --bg-input: #1a1a1a;
    --bg-nav: rgba(10, 10, 10, 0.95);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: #333;
    --shadow: rgba(0,0,0,0.5);
    
    /* --- FUENTES --- */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- MODO CLARO --- */
[data-theme="light"] {
    --bg-body: #ffffff;
    --bg-card: #f9f9f9;
    --bg-input: #e0e0e0;
    --bg-nav: rgba(255, 255, 255, 0.95);
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --border-color: #ddd;
    --accent: #b38f1d;
    --shadow: rgba(0,0,0,0.1);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    transition: background 0.3s, color 0.3s;
    padding-top: 80px; /* Espacio para el menú fijo */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 { 
    font-family: var(--font-heading); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; outline: none; }

/* =========================================
   1. NAVBAR MAESTRO
   ========================================= */
.navbar {
    position: fixed; 
    top: 0; left: 0;
    width: 100%; 
    height: 80px; 
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.nav-container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { 
    height: 55px; 
    width: auto;
    display: block;
}

.nav-menu {
    display: flex; 
    gap: 30px; 
}

.nav-menu a {
    color: var(--text-main);
    font-weight: 700; 
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: none;
    transition: color 0.3s;
}

.nav-menu a:hover { 
    color: var(--primary); 
}

.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

/* Botón Tema */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 20px; 
    border-radius: 50px; 
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex; 
    align-items: center; 
    gap: 8px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Carrito Trigger */
.cart-trigger {
    position: relative;
    cursor: pointer;
    color: var(--text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.cart-trigger:hover {
    color: var(--primary);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.hamburger { 
    display: none; 
    color: var(--text-main); 
    font-size: 1.5rem; 
    cursor: pointer;
}

/* Menú Móvil */
.mobile-menu {
    display: none; 
    flex-direction: column;
    background: var(--bg-nav); 
    border-top: 1px solid var(--border-color);
    position: fixed; 
    top: 80px; 
    left: 0;
    width: 100%; 
    z-index: 999;
    text-align: center;
}

.mobile-menu a {
    padding: 20px; 
    color: var(--text-main); 
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.mobile-menu.active { display: flex; }

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: block; }
}

/* =========================================
   2. HERO SECTION (HÍBRIDO)
   ========================================= */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: -1px;
}

/* Estilo compartido para Video e Imagen de fondo */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo sin deformarse */
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Oscuridad al 60% */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Títulos y textos */
.hero-content h2 { 
    color: var(--accent); 
    margin-bottom: 10px; 
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-content h1 { 
    font-size: 4rem; 
    margin-bottom: 20px; 
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-content p { 
    font-size: 1.2rem; 
    color: #ddd; 
    margin-bottom: 30px; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* --- CLASES DE VISIBILIDAD INTELIGENTE --- */

/* Por defecto (PC): Ocultamos la imagen móvil */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* --- AJUSTES PARA CELULARES (SOLUCIÓN DEFINITIVA) --- */
@media (max-width: 768px) {
    /* 1. Menú Móvil */
    .nav-menu { display: none; }
    .hamburger { display: block; }
    
    /* 2. Sección Hero */
    .hero { 
        height: 85vh; 
        align-items: flex-end; /* Alinea texto al fondo */
        padding-bottom: 20px;  /* <--- CAMBIO CLAVE: Antes 60px. Esto baja el texto */
    }
    
    /* 3. Ajuste de la Imagen de Fondo (Móvil) */
    .mobile-only {
        /* <--- CAMBIO CLAVE: "center 30%" sube el encuadre para ver mejor el logo */
        object-position: center 10%; 
    }

    /* 4. Degradado para que se lean las letras abajo */
    .hero-overlay {
        /* Degradado más suave arriba para dejar ver el logo */
        background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,1) 100%);
    }

    /* 5. Visibilidad */
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    
    /* 6. Ajustes del Texto */
    .hero-content {
        width: 100%;
        margin: 0;
        padding: 10px;
        z-index: 2;
    }

    .hero-content h2 { display: none; } /* Ocultamos título repetido */

    .hero-content h1 { 
        font-size: 2rem; /* Un pelín más pequeño para ganar espacio */
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px; /* Menos margen para pegarlo más abajo */
        opacity: 0.9;
    }

    /* 7. Ajustes Generales */
    .footer-grid, .contact-grid, .checkout-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .map-container { min-height: 300px; }
    .nosotros-hero { flex-direction: column; }
    .cart-sidebar { width: 100%; right: -100%; }
}
/* =========================================
   3. SECCIÓN NOSOTROS
   ========================================= */
.section-nosotros {
    padding: 80px 20px;
    background-color: var(--bg-body);
}

.nosotros-container {
    max-width: 1100px;
    margin: 40px auto;
}

.nosotros-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.nosotros-text { flex: 1; min-width: 300px; }
.nosotros-text h1 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}
.nosotros-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more-link {
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more-link:hover { border-bottom-color: var(--primary); gap: 10px; }

.nosotros-img { flex: 1; display: flex; justify-content: center; }
.nosotros-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 15px 15px 0px rgba(0,0,0,0.1);
    border: 4px solid var(--bg-card);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.nosotros-img img:hover { transform: rotate(0deg) scale(1.02); }

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}
.valor-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}
.valor-card:hover i { transform: scale(1.2) rotate(15deg); }
.valor-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}
.valor-card p { color: var(--text-muted); font-style: italic; font-size: 1rem; }

@media (max-width: 850px) {
    .nosotros-hero { flex-direction: column; text-align: center; }
}

/* =========================================
   4. CATÁLOGO (ESTILO COTIZADOR)
   ========================================= */
.catalog-section {
    padding: 80px 20px;
    background-color: var(--bg-body);
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}
.search-wrapper input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.search-wrapper input:focus { border-color: var(--primary); }
.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.card-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #eee;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrapper img { transform: scale(1.1); }

/* Ajuste de info sin precio */
.card-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Mantiene el botón abajo */
    gap: 10px;
}
.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   5. CONTROLES DE CANTIDAD
   ========================================= */
.add-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.add-btn:hover { background: var(--primary); color: white; }

.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-input);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 5px;
    width: 100%;
    height: 42px;
}
.qty-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.qty-btn:hover { background: #b71c1c; }
.qty-number { font-weight: bold; color: var(--text-main); font-size: 1.1rem; }

/* =========================================
   6. SECCIÓN CONTACTO Y MAPA
   ========================================= */
.contact-header { text-align: center; margin-bottom: 50px; margin-top: 40px; }
.contact-header h1 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    display: inline-block;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
.info-item i {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.info-item strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }

/* MAPA RESPONSIVE (NUEVO) */
.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

@media (max-width: 850px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { padding: 40px 30px; }
    /* El mapa se adapta abajo en móviles */
    .map-container {
        border-radius: 0 0 12px 12px;
        min-height: 300px;
    }
}

/* =========================================
   7. GLOBALES Y FOOTER
   ========================================= */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-primary:hover { filter: brightness(1.1); }

footer {
    background: #111;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-top: 4px solid var(--accent);
    margin-top: auto;
}
.footer-logo { height: 80px; margin-bottom: 20px; }

.main-spacer { margin-top: 40px; margin-bottom: 60px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   8. CARRITO SIDEBAR
   ========================================= */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1500;
    display: none;
}
.cart-overlay.open { display: block; }

.cart-sidebar {
    position: fixed; top: 0; right: -400px;
    width: 350px; height: 100%;
    background: var(--bg-card);
    z-index: 2000;
    transition: 0.4s;
    border-left: 2px solid var(--primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { right: 0; }

@media (max-width: 500px) {
    .cart-sidebar { width: 100%; right: -100%; }
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.qty-mini-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-input);
    border-radius: 4px;
    padding: 2px;
}

.btn-mini {
    width: 24px;
    height: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: 0.2s;
}
.btn-mini:hover { background: var(--primary); color: white; border-color: var(--primary); }

.qty-mini-val {
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    color: var(--text-main);
}

/* =========================================
   9. SECCIÓN SOLICITUD (CHECKOUT)
   ========================================= */
.checkout-section {
    padding: 60px 20px;
    margin-top: 40px;
}

.checkout-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-form-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.checkout-form-card h3 {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    color: var(--text-main);
}

.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 15px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: var(--primary);
    background: var(--bg-card);
    outline: none;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.order-summary-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.order-summary-card h3 { text-align: center; margin-bottom: 20px; color: var(--primary); }

#checkout-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 5px;
}

.btn-pagar {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 15px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-pagar:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 850px) {
    .checkout-grid { grid-template-columns: 1fr; }
}

/* --- BOTÓN FLOTANTE WHATSAPP (DERECHA) --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;  /* <--- AQUÍ ESTÁ EL CAMBIO */
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* =========================================
   10. FOOTER PROFESIONAL (NUEVO)
   ========================================= */
.main-footer {
    background-color: #111;
    color: #b0b0b0;
    padding-top: 70px;
    border-top: 4px solid var(--primary); /* Línea naranja arriba */
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}

/* Columna Marca */
.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0.9); /* Un poco más sutil */
}
.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Títulos de Columnas */
.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
/* Pequeña línea debajo del título */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

/* Enlaces Rápidos */
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.footer-links a i { font-size: 0.8rem; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

/* Contacto */
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Barra Final */
.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
    font-size: 0.85rem;
}

/* Responsive: Centrar todo en celular */
@media (max-width: 768px) {
    .footer-grid { text-align: center; gap: 40px; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); } /* Centrar línea */
    .social-links { justify-content: center; }
    .footer-links a { justify-content: center; }
    .footer-contact li { justify-content: center; text-align: center; }
}