/* ==========================================================================
   1. ESTRUCTURA Y FONDO
   ========================================================================== */
:root {
  --red: #ff0012;
  --white: #ffffff;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px; /* Ajusta según tu diseño */
    background-color: #000000 !important; /* Negro sólido siempre */
    z-index: 9999;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- LA LÍNEA ROJA DESVANECIDA --- */
.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Grosor de la línea */
    /* Degradado: Transparente - Rojo Claro - Transparente */
    background: linear-gradient(
        90deg, 
        rgba(255, 0, 0, 0) 0%, 
        rgba(255, 0, 0, 0.8) 50%, 
        rgba(255, 0, 0, 0) 100%
    );
}

.nav-container {
  display: flex;
  align-items: center;
  height: 95px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ==========================================================================
   2. LOGO
   ========================================================================== */
.logo {
  display: inline-block;
  /* CAMBIA ESTE VALOR para mover el logo a la derecha */
  margin-left: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  animation: entradaLogo 1.2s ease-out forwards;
}

.logo:hover {
  transform: scale(1.08);
}

.logo img {
  height: 85px;
}

@keyframes entradaLogo {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   3. NAVEGACIÓN PC (AJUSTE DE ESPACIOS)
   ========================================================================== */
@media (min-width: 1025px) {
  .mobile-menu-toggle, 
  .mobile-overlay {
    display: none !important;
  }

  .main-nav {
    display: flex;
    /* Empuja el menú hacia la derecha del logo */
    margin-left: 5rem; 
    /* Agrega espacio extra para que no esté pegado al CTA */
    padding-right: 4rem; 
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-link, 
  .dropdown-toggle {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-link::after, 
  .dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after, 
  .dropdown-toggle:hover::after {
    width: 100%;
  }

  .nav-link:hover, 
  .dropdown-toggle:hover {
    color: var(--red);
  }

  /* DROPDOWN */
  .has-dropdown {
    position: relative;
  }

  .dropdown {
    position: absolute;
    top: 130%;
    left: 0;
    background: #111111;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 280px;
    display: none;
    opacity: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    list-style: none;
  }

  .has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;    /* Empieza donde termina el texto Servicios */
  left: 0;
  width: 100%;
  height: 40px; /* Esta altura debe cubrir el hueco para que el mouse no se pierda */
  z-index: 10;
}

  .has-dropdown:hover .dropdown {
    display: block;
    animation: slideUp 0.3s ease forwards;
  }

  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown a {
    color: #eeeeee;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    transition: all 0.3s ease;
  }

  .dropdown a::before {
        content: '';
        width: 24px;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        /* ESTA LÍNEA los vuelve blancos */
        filter: brightness(0) invert(1) !important; 
        transition: filter 0.3s ease; /* Para que el cambio de color sea suave */
    }

  .item-fuego::before { background-image: url('https://cdn-icons-png.flaticon.com/512/785/785116.png'); }
  .item-energia::before { background-image: url('https://cdn-icons-png.flaticon.com/512/2814/2814577.png'); }
  .item-agua::before { background-image: url('https://cdn-icons-png.flaticon.com/512/3105/3105807.png'); }
  .item-check::before { 
    background-image: url(../assets/img/cohete.webp);
    width: 45px !important; 
    height: 45px !important;
    transform: translateY(-2px); 
    filter: none !important;
}

  .dropdown a:hover {
    color: var(--red);
    transform: translateX(5px);
  }

  .dropdown a:hover::before {
    filter: none !important;
  }

  /* GRUPO DERECHA */
  .nav-right-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    /* Empuja este bloque hacia la izquierda del borde derecho */
    margin-right: 6rem; 
  }

  .nav-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
  }

  .nav-social img {
    width: 25px;
    opacity: 0.8;
    transition: 0.3s;
  }

  .nav-social a:hover img {
    opacity: 1;
    transform: scale(1.2);
  }
}


/* ==========================================================================
   3. NAVEGACIÓN tablet (AJUSTE DE ESPACIOS)
   ========================================================================== */
@media (max-width: 1024px) and (min-width: 768px) {
  .main-nav, .pc-only {
    display: none !important;
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      height: 85px;
      background: transparent !important; /* Aseguramos transparencia total */
  }

  .logo {
    margin-left: -8px;
  }

  .logo img {
    height: 70px;
  }

  .nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px; /* Espacio aumentado para mejor distribución */
    margin-right: 15px; /* Margen ajustado */
  }

  .nav-cta a {
    min-width: 130px;
    font-size: 0.7rem;
    padding: 0.6rem 0.8rem;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 300px; /* Empuja el botón rojo */
    margin-right: 5px; /* Ajusta la distancia con el borde */
  }

  .mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-overlay {
        padding-top: 30px;
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background: #000;
        z-index: 999;
        /* CAMBIO CLAVE: Cambia translateX(0) por 100% para que inicie afuera */
        transform: translateX(100%); 
        transition: transform 0.4s ease;
        visibility: hidden; /* Añade esto para que no interfiera si está oculto */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

  .mobile-overlay.active {
        transform: translateX(0);
        visibility: visible;
    }
  .nav-social-mobile {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-bottom: 30px;
        width: 100%;
    }

  .nav-social-mobile img {
        width: 30px;
        height: 30px;
    }

  .mobile-links {
    align-items: center;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio uniforme entre Inicio, Servicios, Proyectos... */
  }

  .mobile-links li {
    margin-bottom: 20px;
  }

  .trigger-mobile {
        display: flex;
        justify-content: center; /* Mantiene ambos elementos centrados */
        align-items: center;
        
        /* Aumenta este valor para dar más espacio entre la palabra y el + */
        gap: 20px; 
        
        width: 100%;
        cursor: pointer;
    }

  .mobile-links a, 
  .trigger-mobile span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
  }

  .plus-icon {
    font-size: 1.5rem;
    color: #ff0012 !important; /* Forzamos el rojo */
    transition: transform 0.3s ease;
  }

  .has-dropdown-mobile.open .plus-icon {
        transform: rotate(45deg);
    }

  .dropdown-mobile {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        background: #111111; /* Color oscuro igual a PC */
        border-radius: 12px;
        width: 90%; /* Para que no pegue a los bordes */
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        padding: 0 20px;
    }

  .has-dropdown-mobile.open .dropdown-mobile {
        max-height: 600px;
        margin-top: 20px;
        padding: 15px 20px; /* Espaciado interno de la caja */
    }
/* Enlaces con iconos dentro del menú móvil */
    .dropdown-mobile a {
        display: flex !important;
        flex-direction: row; /* Fuerza a que el icono esté al lado del texto */
        align-items: center; /* Centra verticalmente el icono con el texto */
        justify-content: space-between;
        gap: 15px; /* Espacio exacto entre el icono y el texto */
        padding: 15px 20px; /* Espacio interno para que no toque los bordes de la caja */
        text-align: left;
    }

    /* 1ro y 3ro: Icono a la IZQUIERDA, Texto a la DERECHA */
        .dropdown-mobile li:nth-child(odd) a {
            flex-direction: row; 
        }

        /* 2do y 4to: Texto a la IZQUIERDA, Icono a la DERECHA */
        .dropdown-mobile li:nth-child(even) a {
            flex-direction: row-reverse;
        }
        .dropdown-mobile li:nth-child(odd) a::before {
            margin-right: 15px;
            margin-left: 0;
        }
        .dropdown-mobile li:nth-child(even) a::before {
            margin-left: 15px;
            margin-right: 0;
        }

    .dropdown-mobile a::before {
        content: '';
        width: 25px;
        height: 25px;
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        filter: saturate(1.2) brightness(1.1);
        
    }

  .dropdown-mobile .item-fuego::before { 
    background-image: url('https://cdn-icons-png.flaticon.com/512/785/785116.png') !important; 
    filter: none !important;
  }
  .dropdown-mobile .item-energia::before { 
    background-image: url('https://cdn-icons-png.flaticon.com/512/2814/2814577.png') !important; 
    filter: none !important;
  }
  .dropdown-mobile .item-agua::before { 
    background-image: url('https://cdn-icons-png.flaticon.com/512/3105/3105807.png') !important; 
    filter: none !important;
  }
  .dropdown-mobile .item-check::before { 
    background-image: url(../assets/img/cohete.webp);
      width: 40px !important; 
      height: 40px !important;
      transform: translateY(-2px); 
      filter: none !important;
  }
}


/* ==========================================================================
   4. CTA (DIAGNÓSTICO)
   ========================================================================== */
.nav-cta a {
  padding: 0.7rem 1.5rem;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  position: relative;
  min-width: 180px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 18, 0.4);
  animation: heartbeat 2s infinite ease-in-out;
}

.nav-cta a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 150%;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  animation: shineSweep 3s infinite;
}

@keyframes heartbeat {
  0%, 30%, 60%, 100% { transform: scale(1); }
  15% { transform: scale(1.08); }
  45% { transform: scale(1.05); }
}

@keyframes shineSweep {
  0% { left: 150%; }
  30%, 100% { left: -150%; }
}

/* ==========================================================================
   5. MÓVIL
   ========================================================================== */
@media (max-width: 992px) {
  .main-nav, .pc-only {
    display: none !important;
  }

  .nav-container {
        background: transparent !important;
        display: flex;
        justify-content: space-between; /* Separa el logo a la izquierda y el resto a la derecha */
        align-items: center;
        padding: 0 0px; /* Espacio de seguridad a los lados de la pantalla */
        height: 85px;    /* Altura fija para que el logo no toque los bordes */
    }

  .logo {
    margin-left: -8px;
  }

  .logo img {
    height: 70px;
  }

  .nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px; /* Espacio aumentado para mejor distribución */
    margin-right: 15px; /* Margen ajustado */
  }

  .nav-cta a {
    min-width: 130px;
    font-size: 0.7rem;
    padding: 0.6rem 0.8rem;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 35px; /* Empuja el botón rojo */
    margin-right: 5px; /* Ajusta la distancia con el borde */
  }

  .mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-overlay {
        padding-top: 30px;
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background: #000;
        z-index: 999;
        /* CAMBIO CLAVE: Cambia translateX(0) por 100% para que inicie afuera */
        transform: translateX(100%); 
        transition: transform 0.4s ease;
        visibility: hidden; /* Añade esto para que no interfiera si está oculto */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

  .mobile-overlay.active {
        transform: translateX(0);
        visibility: visible;
    }
  .nav-social-mobile {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-bottom: 30px;
        width: 100%;
    }

  .nav-social-mobile img {
        width: 30px;
        height: 30px;
    }

  .mobile-links {
    align-items: center;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio uniforme entre Inicio, Servicios, Proyectos... */
  }

  .mobile-links li {
    margin-bottom: 20px;
  }

  .trigger-mobile {
        display: flex;
        justify-content: center; /* Mantiene ambos elementos centrados */
        align-items: center;
        
        /* Aumenta este valor para dar más espacio entre la palabra y el + */
        gap: 20px; 
        
        width: 100%;
        cursor: pointer;
    }

  .mobile-links a, 
  .trigger-mobile span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
  }

  .plus-icon {
    font-size: 1.5rem;
    color: #ff0012 !important; /* Forzamos el rojo */
    transition: transform 0.3s ease;
  }

  .has-dropdown-mobile.open .plus-icon {
        transform: rotate(45deg);
    }

  .dropdown-mobile {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        background: #111111; /* Color oscuro igual a PC */
        border-radius: 12px;
        width: 90%; /* Para que no pegue a los bordes */
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        padding: 0 20px;
    }

  .has-dropdown-mobile.open .dropdown-mobile {
        max-height: 600px;
        margin-top: 20px;
        padding: 15px 20px; /* Espaciado interno de la caja */
    }
/* Enlaces con iconos dentro del menú móvil */
    .dropdown-mobile a {
        display: flex !important;
        flex-direction: row; /* Fuerza a que el icono esté al lado del texto */
        align-items: center; /* Centra verticalmente el icono con el texto */
        justify-content: space-between;
        gap: 15px; /* Espacio exacto entre el icono y el texto */
        padding: 15px 20px; /* Espacio interno para que no toque los bordes de la caja */
        text-align: left;
    }

    /* 1ro y 3ro: Icono a la IZQUIERDA, Texto a la DERECHA */
        .dropdown-mobile li:nth-child(odd) a {
            flex-direction: row; 
        }

        /* 2do y 4to: Texto a la IZQUIERDA, Icono a la DERECHA */
        .dropdown-mobile li:nth-child(even) a {
            flex-direction: row-reverse;
        }
        .dropdown-mobile li:nth-child(odd) a::before {
            margin-right: 15px;
            margin-left: 0;
        }
        .dropdown-mobile li:nth-child(even) a::before {
            margin-left: 15px;
            margin-right: 0;
        }

    .dropdown-mobile a::before {
        content: '';
        width: 25px;
        height: 25px;
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        filter: saturate(1.2) brightness(1.1);
        
    }

.dropdown-mobile .item-fuego::before { 
  background-image: url('https://cdn-icons-png.flaticon.com/512/785/785116.png') !important; 
  filter: none !important;
}
.dropdown-mobile .item-energia::before { 
  background-image: url('https://cdn-icons-png.flaticon.com/512/2814/2814577.png') !important; 
  filter: none !important;
}
.dropdown-mobile .item-agua::before { 
  background-image: url('https://cdn-icons-png.flaticon.com/512/3105/3105807.png') !important; 
  filter: none !important;
}
.dropdown-mobile .item-check::before { 
   background-image: url(../assets/img/cohete.webp);
    width: 40px !important; 
    height: 40px !important;
    transform: translateY(-2px); 
    filter: none !important;
}
}


.hero__ticker {
  margin-top: 120px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker__track span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero__ticker {
    margin-top: 115px;
    padding: 12px 0;
  }

  .ticker__track {
    gap: 2rem;
    animation: ticker 35s linear infinite;
  }

  .ticker__track span {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .hero__ticker {
    margin-top: 110px;
    padding: 10px 0;
  }

  .ticker__track {
    gap: 1.5rem;
    animation: ticker 40s linear infinite;
  }

  .ticker__track span {
    font-size: 0.65rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
  }

  .hero__visual {
    margin-top: 0;
  }
}


/* ==========================================================================
   6. FOOTER PROFESIONAL (COLOR ORIGINAL Y ALINEACIÓN PERFECTA)
   ========================================================================== */
.site-footer {
    background-color: #000;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Títulos de Columnas */
.footer-column h3 {
    color: #ffffff !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--red);
}

/* Textos y Enlaces */
.footer-column p, 
.footer-column ul li a, 
.ev-text, 
.footer-bottom p {
    /* 3. FUENTE PARA CUERPO DE TEXTO */
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Normal/Fina */
    text-decoration: none !important;
    
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio para los iconos de servicios */
}

/* Estilo para los iconos de servicios (llama, cohete, etc) */
.footer-column ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: none !important;
}

.footer-column ul li a:hover {
    color: var(--red) !important;
    opacity: 1;
    padding-left: 5px;
}

/* ==========================================================================
   MANEJO DE IMÁGENES Y ALINEACIÓN (COLORES ORIGINALES)
   ========================================================================== */

/* Limpieza total de filtros para mantener colores reales */
.footer-logo, 
.ev-logo, 
.footer-socials img, 
.ev-socials img, 
.ev-web-icon svg {
    filter: none !important; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
}

/* Logos Tamaños */
.footer-logo { height: 90px; margin-bottom: 20px; object-fit: contain; }
.ev-logo { height: 40px; margin-bottom: 10px; object-fit: contain; }

/* Contenedores de Redes - Alineación Vertical Perfecta */
.footer-socials, .ev-socials {
    display: flex; 
    gap: 15px; 
    margin-top: 20px;
    align-items: center; /* Centra verticalmente todos los hijos */
}

.footer-socials img { width: 28px; height: 28px; }
.ev-socials img { width: 22px; height: 22px; }

/* Icono Web SVG - Ajuste para evitar desnivel */
.ev-web-icon {
    color: #00f2ff; 
    display: flex;
    align-items: center; /* Alinea el SVG dentro del enlace */
    text-decoration: none;
    margin-top: -8px; /* Prueba con -2px, -3px o -5px hasta que lo veas nivelado */
}
.ev-web-icon svg { 
    width: 22px; 
    height: 22px; 
    display: block; /* Elimina espacio extra de texto */
}

/* HOVER: SOLO ZOOM */
.footer-brand:hover .footer-logo,
.evolusence-branding:hover .ev-logo,
.footer-socials a:hover img,
.ev-socials a:hover img,
.ev-web-icon:hover svg {
    transform: scale(1.15);
}

/* ==========================================================================
   7. SELLO DE AUTOR (EVOLUSENCE)
   ========================================================================= */
.evolusence-branding {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   8. BOTTOM BAR
   ========================================================================== */
.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 50px;
}

.footer-bottom span { 
    color: #ffffff; 
    font-weight: 600; 
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-socials, .ev-socials {
        justify-content: center;
    }
    .footer-column ul li {
        justify-content: center;
    }
    .evolusence-branding {
        text-align: center;
    }
    .ev-text {
        margin: 0 auto 15px;
    }
}

.contact-link {
    text-decoration: none !important; /* Quita el subrayado */
    color: #ffffff !important;        /* Forzamos el blanco para que coincida con el texto de arriba */
    font-size: 0.9rem;               /* Ajusta al tamaño de tu descripción */
    display: flex;
    align-items: center;
    gap: 8px;                        /* Espacio entre el icono y el texto */
    margin-top: 15px;
}

/* Estilo para el icono específicamente */
.contact-link i {
    color: #ff0012; /* Mantenemos el icono en rojo para que resalte */
}

/* Efecto opcional al pasar el mouse (hover) */
.contact-link:hover {
    color: #ff0012 !important; /* Se vuelve rojo al señalarlo */
    transition: 0.3s;
}