/* ===== VARIABLES CSS ===== */
:root {
  --turquesa: #308A9E;
  --cerulean: #1F75AE;
  --ruby: #CD3334;
  --verde: #25D366;
  --naranja: #E28413;
  --gold: #D5A838;
  --smoke: #F3F2F1;
  --negro: #000;
}

/* ===== RESET Y ESTILOS GLOBALES ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Asegurar que las imágenes escalen en pantallas pequeñas */
.navbar-logo, .footer-logo, img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== EFECTO DEL LOGO ===== */
/* Efecto Glitch para desktop (hover) */
@media (hover: hover) {
  .navbar-logo:hover {
    animation: glitch 0.3s linear infinite;
  }
}

/* Efecto Glitch para móviles (active/tap) */
@media (hover: none) {
  .navbar-logo:active {
    animation: glitch 0.3s linear 2; /* 2 ciclos al tocar */
  }
}

/* Animación Glitch (personalizada con tus colores) */
@keyframes glitch {
  0% {
    filter: drop-shadow(-2px 0 #CD3334);
    transform: translateX(0);
  }
  25% {
    filter: drop-shadow(2px 0 #E28413);
    transform: translateX(-2px);
  }
  50% {
    filter: drop-shadow(-2px 0 #CD3334);
    transform: translateX(2px);
  }
  75% {
    filter: drop-shadow(2px 0 #E28413);
    transform: translateX(0);
  }
  100% {
    filter: none;
  }
}

/* ===== BARRA DE NAVEGACIÓN ===== */
/* Estilos generales de la barra de navegación */
.navbar {
  width: 100%;
  background-color: #F3F3F3;
  border-bottom: 5px solid black;
  padding: 0.5rem;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

/* Icono del toggler */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background: no-repeat center center;
  background-size: 100% 100%;
  font-size: 1.5rem;
  line-height: 1;
}

/* Solución para cierre en móviles */
.navbar-collapse.show {
  transition: all 0.3s ease;
}

/* Enlaces del menú */
.navbar-nav .nav-link {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #E28413;
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}

/* ===== DROPDOWN ===== */
/* Estilos del dropdown */
.dropdown-menu {
  background-color: #CD3334;
  border: 4px solid black !important;
  padding: 0;
  margin-top: 5px;
  transform: scale(0.98);
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.1);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

/* Mostrar dropdown al hacer hover (solo en desktop) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    transform: scale(1);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  }
}

/* Items del dropdown */
.dropdown-item {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid black;
  position: relative;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #060606;
  color: #ffffff;
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

/* ===== BOTÓN WHATSAPP ===== */
.btn-whatsapp {
  background-color: transparent;
  color: #25D366;
  font-weight: bold;
  border: 4px solid #25D366;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #F3F3F3;
    z-index: 1000;
    padding: 15px;
    border-bottom: 5px solid black;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    transform: translateY(-150%);
    transition: transform 0.3s ease-out;
  }
  
  .navbar-collapse.show {
    transform: translateY(0);
  }
  
  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin-top: 0;
  }
  
  .btn-whatsapp {
    margin: 15px 0 0 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-brand, .nav-link, .btn-whatsapp {
    font-size: 1rem;
  }
  
  .navbar-brand img {
    max-height: 40px;
  }
}

/* ------------------------ FIN - Menú  ------------------------ */


  .servicio-hero {
        background: #308A9E; /* --turquesa */
        border-bottom: 5px solid #000;
        padding: 64px 0 56px;
    }

    .badge-fase {
        display: inline-block;
        background: #CD3334; /* --ruby */
        color: #fff;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 18px;
        border: 3px solid #000;
        box-shadow: 4px 4px 0 #000;
        margin-bottom: 24px;
    }

    .servicio-hero h1 {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: clamp(28px, 5vw, 46px);
        font-weight: 700;
        line-height: 1.15;
        color: #fff;
        text-transform: uppercase;
        text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        margin-bottom: 12px;
    }

    .servicio-hero h1 .titulo-subline {
        color: #D5A838; /* --gold */
        display: block;
        font-size: clamp(18px, 3vw, 26px);
        text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
    }

    .hero-subtitulo {
        font-size: 17px;
        color: rgba(255,255,255,0.92);
        margin-bottom: 36px;
        max-width: 640px;
    }

    .hero-subtitulo strong { color: #fff; }

    /* Métricas */
    .hero-metricas {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 36px;
    }

    .metrica-item {
        background: rgba(255,255,255,0.15);
        border: 3px solid rgba(0,0,0,0.25);
        box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
        padding: 16px 22px;
        min-width: 130px;
    }

    .metrica-item.destacada {
        border-color: #D5A838;
        box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    }

    .metrica-numero {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
    }

    .metrica-super {
        font-size: 16px;
        vertical-align: super;
    }

    .metrica-label {
        font-size: 12px;
        color: rgba(255,255,255,0.85);
        margin-top: 4px;
    }

    /* CTAs */
    .hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-hero-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff !important;
        background: #CD3334;
        padding: 14px 28px;
        border: 4px solid #000;
        box-shadow: 5px 5px 0 #000;
        text-decoration: none;
        transition: transform 0.1s, box-shadow 0.1s;
    }

    .btn-hero-primary:hover {
        transform: translate(3px, 3px);
        box-shadow: 2px 2px 0 #000;
    }

    @media (max-width: 576px) {
        .hero-metricas { flex-direction: column; }
        .metrica-item { min-width: auto; }
        .btn-hero-primary { width: 100%; justify-content: center; }
    }


/* ENTREGABLE */

 .entregables-section {
        background: #F3F2F1; /* --smoke */
        border-bottom: 5px solid #000;
        padding: 64px 0;
    }

    .badge-seccion {
        display: inline-block;
        background: #CD3334;
        color: #fff;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 18px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
        margin-bottom: 16px;
    }

    .entregables-titulo {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: clamp(22px, 3.5vw, 32px);
        font-weight: 700;
        text-transform: uppercase;
        color: #2C3E50;
        margin-bottom: 10px;
    }

    .entregables-subtitulo {
        font-size: 16px;
        color: #555;
        max-width: 580px;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .entregables-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    @media (max-width: 991px) {
        .entregables-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 576px) {
        .entregables-grid { grid-template-columns: 1fr; }
        .entregables-section { padding: 48px 0; }
    }

    .entregable-card {
        background: #fff;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #000;
        padding: 28px 24px;
        transition: transform 0.1s, box-shadow 0.1s;
    }

    .entregable-card:hover {
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 #000;
    }

    .entregable-icon {
        font-size: 2.2rem;
        color: #308A9E; /* --turquesa */
        margin-bottom: 14px;
        display: block;
    }

    .entregable-card h3 {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        color: #2C3E50;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .entregable-card p {
        font-size: 14px;
        color: #444;
        line-height: 1.7;
        margin: 0;
    }


    /* PARA QUIEN ES EL SERVICIO  */

   .audiencia-section {
        background: #fff;
        border-bottom: 5px solid #000;
        padding: 64px 0;
    }

    .audiencia-bloque {
        border: 5px solid #000;
        box-shadow: 6px 6px 0 #000;
        background: #fff;
        padding: 40px;
    }

    .audiencia-bloque h2 {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 700;
        text-transform: uppercase;
        color: #2C3E50;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .audiencia-bloque > p {
        font-size: 15px;
        color: #444;
        margin-bottom: 20px;
    }

    .audiencia-lista {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 28px;
        padding: 0;
    }

    @media (max-width: 576px) {
        .audiencia-lista { grid-template-columns: 1fr; }
        .audiencia-bloque { padding: 28px 20px; }
        .audiencia-section { padding: 48px 0; }
    }

    .audiencia-lista li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        font-weight: 600;
        color: #2C3E50;
        background: #F3F2F1;
        border: 2px solid #000;
        padding: 12px 14px;
        line-height: 1.4;
    }

    .audiencia-lista li::before {
        content: '→';
        color: #CD3334;
        font-weight: 900;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .audiencia-nota {
        background: #FFF9E6;
        border-left: 8px solid #D5A838;
        box-shadow: 3px 3px 0 #000;
        padding: 16px 20px;
        font-size: 14px;
        color: #2C3E50;
        line-height: 1.65;
        margin: 0;
    }


/* 
    PLANES DE INVERSION  */

       .planes-section {
        background: #F3F2F1;
        border-bottom: 5px solid #000;
        padding: 64px 0;
    }

    .planes-section .badge-seccion {
        display: inline-block;
        background: #CD3334;
        color: #fff;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 18px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #000;
        margin-bottom: 16px;
    }

    .planes-titulo {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: clamp(22px, 3.5vw, 32px);
        font-weight: 700;
        text-transform: uppercase;
        color: #2C3E50;
        margin-bottom: 10px;
    }

    .planes-subtitulo {
        font-size: 16px;
        color: #555;
        max-width: 560px;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .planes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    @media (max-width: 700px) {
        .planes-grid { grid-template-columns: 1fr; }
        .planes-section { padding: 48px 0; }
    }

    /* Tarjeta */
    .plan-card {
        border: 5px solid #000;
        box-shadow: 6px 6px 0 #000;
        overflow: hidden;
        transition: transform 0.1s, box-shadow 0.1s;
    }

    .plan-card:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0 #000;
    }

    /* Badge superior de cada plan */
    .plan-badge {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 14px 24px;
        border-bottom: 4px solid #000;
    }

    .plan-badge.esencial {
        background: #308A9E;
        color: #fff;
    }

    .plan-badge.integral {
        background: #000;
        color: #D5A838;
    }

    /* Cuerpo */
    .plan-body {
        background: #fff;
        padding: 28px 24px;
    }

    .plan-body h3 {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #2C3E50;
        margin-bottom: 12px;
    }

    .plan-cifra {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 34px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 4px;
    }

    .plan-cifra.turquesa { color: #308A9E; }
    .plan-cifra.oscura   { color: #2C3E50; }

    .plan-cifra span {
        font-family: 'Matter SQ Regular', Arial, sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: #888;
    }

    .plan-periodo {
        font-size: 13px;
        color: #888;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 2px solid #eee;
    }

    .plan-lista {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }

    .plan-lista li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }

    .plan-lista li i { flex-shrink: 0; margin-top: 2px; }
    .plan-lista .bi-check-circle-fill.turquesa { color: #308A9E; }
    .plan-lista .bi-check-circle-fill.gold     { color: #D5A838; }

    /* Botón de cada plan */
    .btn-plan {
        display: block;
        text-align: center;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        padding: 14px 20px;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #000;
        transition: transform 0.1s, box-shadow 0.1s;
    }

    .btn-plan:hover {
        transform: translate(3px, 3px);
        box-shadow: 1px 1px 0 #000;
    }

    .btn-plan.turquesa { background: #308A9E; color: #fff !important; }
    .btn-plan.negro    { background: #000;    color: #D5A838 !important; }

    /* Nota inferior */
    .planes-nota {
        margin-top: 24px;
        background: #308A9E;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #000;
        padding: 18px 24px;
        font-size: 14px;
        color: #fff;
        display: flex;
        gap: 12px;
        align-items: flex-start;
        line-height: 1.65;
    }

    .planes-nota i { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

    @media (max-width: 576px) {
        .planes-nota { flex-direction: column; }
    }



       .cta-final-section {
        background: #308A9E;
        border-bottom: 5px solid #000;
        padding: 64px 0;
    }

    .cta-final-bloque {
        border: 5px solid #000;
        box-shadow: 6px 6px 0 #000;
        background: #308A9E;
        padding: 48px 40px;
        text-align: center;
    }

    .cta-final-bloque h2 {
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: clamp(22px, 3.5vw, 34px);
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .cta-final-bloque p {
        font-size: 16px;
        color: rgba(255,255,255,0.9);
        max-width: 520px;
        margin: 0 auto 32px;
        line-height: 1.75;
    }

    .cta-botones {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 20px;
    }

    .btn-cta-whatsapp {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff !important;
        background: #CD3334;
        text-decoration: none;
        padding: 14px 28px;
        border: 4px solid #000;
        box-shadow: 5px 5px 0 #000;
        transition: transform 0.1s, box-shadow 0.1s;
    }

    .btn-cta-whatsapp:hover {
        transform: translate(3px, 3px);
        box-shadow: 2px 2px 0 #000;
    }

    .btn-cta-calendly {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #2C3E50 !important;
        background: #fff;
        text-decoration: none;
        padding: 14px 28px;
        border: 4px solid #000;
        box-shadow: 5px 5px 0 #000;
        transition: transform 0.1s, box-shadow 0.1s;
    }

    .btn-cta-calendly:hover {
        transform: translate(3px, 3px);
        box-shadow: 2px 2px 0 #000;
    }

    .cta-nota-confidencial {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        margin: 0;
    }

    @media (max-width: 576px) {
        .cta-final-bloque { padding: 36px 24px; }
        .cta-final-section { padding: 48px 0; }
        .btn-cta-whatsapp,
        .btn-cta-calendly { width: 100%; justify-content: center; }
    }


/* ===== FOOTER LOGO - EFECTO NEÓN BRUTALISTA ===== */

/* Logo con resplandor base */
.footer-logo {
    filter: brightness(1.2) 
            drop-shadow(0 0 8px #4ECDC4) 
            drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
    transition: all 0.4s ease;
    max-width: 180px;
    height: auto;
}

/* Hover: Intensifica el glow turquesa y añade rojo */
.footer-logo:hover {
    filter: brightness(1.5) 
            drop-shadow(0 0 15px #4ECDC4) 
            drop-shadow(0 0 25px #4ECDC4)
            drop-shadow(0 0 35px #E63946)
            drop-shadow(0 0 45px rgba(230, 57, 70, 0.4));
    transform: scale(1.05);
    cursor: pointer;
}

/* Versión responsive: menos intensidad en mobile */
@media (max-width: 768px) {
    .footer-logo {
        filter: brightness(1.15) 
                drop-shadow(0 0 6px #4ECDC4);
        max-width: 140px;
    }
    
    .footer-logo:hover {
        filter: brightness(1.3) 
                drop-shadow(0 0 10px #4ECDC4) 
                drop-shadow(0 0 20px #E63946);
        transform: scale(1.03);
    }
}

/* Mobile fixes for Herramientas / Validación Humana visibility */
@media (max-width: 768px) {
  .herramientas-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .herramienta-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .herramienta-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
  }

  .herramienta-card h5 {
    font-size: 1rem !important;
    margin: 0;
  }

  /* Reduce padding of capa-body on mobile so content is visible without overflow */
  .capa-body {
    padding: 12px !important;
  }

  /* Mobile fixes for Precios CTA section */
  .precios-cta {
    padding: 20px 15px !important;
    box-shadow: 4px 4px 0px #000 !important;
    margin-bottom: 15px !important;
  }

  .precios-cta h3 {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
  }

  .precios-cta p {
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
  }

  .precios-cta-btn {
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
    gap: 8px !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .precios-cta-btn i {
    font-size: 1.2rem !important;
  }

  /* Mobile fixes for Caso Real section */
  .caso-real-banner {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 20px 15px !important;
    box-shadow: 4px 4px 0px #000 !important;
  }

  .caso-icon {
    font-size: 2.5rem !important;
  }

  .caso-titulo {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
  }

  .caso-contexto {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
  }

  .caso-comparativa {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .caso-antes,
  .caso-despues {
    padding: 15px !important;
    border-width: 3px !important;
  }

  .caso-vs {
    display: none !important;
  }

  .caso-label {
    font-size: 0.75rem !important;
  }

  .caso-dato {
    font-size: 1.8rem !important;
    margin-bottom: 5px !important;
  }

  .caso-conclusion {
    font-size: 0.8rem !important;
  }

  .insight-item {
    padding: 12px 15px !important;
    gap: 10px !important;
    font-size: 0.85rem !important;
  }

  .insight-item i {
    font-size: 1.2rem !important;
  }

  .insight-item span {
    font-size: 0.85rem !important;
  }

  /* Mobile fixes for Proceso de Cotización section */
  .proceso-cotizacion {
    padding: 20px 15px !important;
    margin-bottom: 20px !important;
    box-shadow: 4px 4px 0px #000 !important;
  }

  .proceso-cotizacion-header {
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .proceso-cotizacion-header i {
    font-size: 1.8rem !important;
  }

  .proceso-cotizacion-header h3 {
    font-size: 1.1rem !important;
    text-align: center !important;
  }

  .cotizacion-paso {
    gap: 12px !important;
    padding: 15px !important;
    flex-wrap: wrap !important;
  }

  .cotizacion-numero {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
  }

  .cotizacion-contenido strong {
    font-size: 0.95rem !important;
    margin-bottom: 3px !important;
  }

  .cotizacion-contenido p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
}

/* ============================================================
   FOOTER BRUTALISTA — Hyperconectado
   ============================================================ */

.footer-hyperconectado {
    background: #2D3748;
    border-top: 5px solid #000;
}

.footer-main {
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Columna logo ---- */
.footer-col-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logo con resplandor neón */
.navbar-logo,
.footer-col-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 12px;
    filter: brightness(1.2)
            drop-shadow(0 0 8px #4ECDC4)
            drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.footer-col-logo img:hover {
    filter: brightness(1.5)
            drop-shadow(0 0 15px #4ECDC4)
            drop-shadow(0 0 25px #4ECDC4)
            drop-shadow(0 0 35px #E63946)
            drop-shadow(0 0 45px rgba(230, 57, 70, 0.4));
    transform: scale(1.05);
    cursor: pointer;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 20px;
}

/* ---- Redes sociales ---- */
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.social-link:hover {
    border-color: #4ECDC4;
    background: rgba(78, 205, 196, 0.2);
    color: #fff;
}

/* ---- Licencia ---- */
.footer-license {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.license-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ---- Columnas genéricas ---- */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-titulo {
    font-family: 'Hakuna Sans', 'Arial Black', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid #308A9E;
}

/* ---- Links de servicios y empresa ---- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a::before {
    content: '→ ';
    color: #308A9E;
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
}

/* ---- Contacto ---- */
.footer-contacto {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contacto li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-contacto i {
    color: #308A9E;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.footer-contacto a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-contacto a:hover {
    color: #fff;
}

.footer-descripcion {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ---- Copyright ---- */
.footer-copyright {
    background: #000;
    border-top: 3px solid #308A9E;
    text-align: center;
    padding: 16px 24px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-col-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .footer-main {
        padding: 40px 0 24px;
    }

    .footer-col-logo img {
        filter: brightness(1.15)
                drop-shadow(0 0 6px #4ECDC4);
        max-width: 140px;
    }

    .footer-col-logo img:hover {
        filter: brightness(1.3)
                drop-shadow(0 0 10px #4ECDC4)
                drop-shadow(0 0 20px #E63946);
        transform: scale(1.03);
    }
}
