 

/* ------------------------ 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; 
  } 
} 

/* ------------------------ Inicio - Menú  ------------------------  */ 

/* 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; 
} 
.navbar-toggler-icon { 
  display: inline-block; 
  width: 1.5em; 
  height: 1.5em; 
  vertical-align: middle; 
  font-size: 1.5rem; 
  line-height: 1; 
} 
/* Solución para cierre en mviles */ 

.navbar-collapse.show { 
  transition: all 0.3s ease; 
} 
.navbar-toggler-icon { 
  display: inline-block; 
  width: 1.5em; 
  height: 1.5em; 
  vertical-align: middle; 
  content: ""; 
  background: no-repeat center center; 
  background-size: 100% 100%; 

} 

/* Estilos de los enlaces del menú */ 

/* 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); /* Efecto de escala */ 
} 
/* Estilos del dropdown */ 
.dropdown-menu { 
  background-color: #CD3334; 
  border: 4px solid black !important; 
  padding: 0; 
  margin-top: 5px; 
} 
.dropdown-item { 
  color: white; 
  font-weight: bold; 
  font-size: 1rem; 
  padding: 0.8rem 1.5rem; 
  border-bottom: 3px solid black; 
} 
.dropdown:hover .dropdown-menu { 
  opacity: 1; /* Hacer visible */ 
  visibility: visible; /* Mostrar */ 
  transform: scale(1); /* Escala normal */ 
} 
/* Items del dropdown */ 
/* Estilos del dropdown */ 
.dropdown-menu { 
  background-color: #CD3334; 
  border: 4px solid black !important; /* Borde más grueso */ 
  padding: 0; 
  margin-top: 5px; /* Pequeño espacio del borde superior */ 
  transform: scale(0.98); /* Escala inicial ligeramente reducida */ 
  transform-origin: top center; /* Punto de origen de la transformación */ 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.1); /* Animación más dinámica */ 
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3); /* Sombra brutalista */ 
} 
.dropdown:hover .dropdown-menu { 
  transform: scale(1); /* Escala normal al hacer hover */ 
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4); /* Sombra más pronunciada */ 
} 
/* Items del dropdown con bordes brutales */ 
.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; /* Borde grueso entre items */ 
  position: relative; 
} 
.dropdown-item:hover, 
.dropdown-item:focus { 
  background-color: #060606; 
  color: #ffffff; 
  transform: scale(1.02); /* Efecto de escala hacia adelante */ 
  z-index: 1; /* Para que se superponga correctamente */ 
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2); /* Sombra para el hover */ 
} 
/* Efecto de "empuje" hacia adelante */ 
.dropdown-item::after { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  border: 2px solid transparent; 
  transition: all 0.3s ease; 
} 

/* Mostrar dropdown al hacer hover (solo en desktop) */ 
@media (min-width: 992px) { 
  .dropdown:hover .dropdown-menu { 
    display: block; 
  }
}
/* 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; 
} 
/* Estilos responsivos */ 
@media (max-width: 991.98px) { 
  .navbar-collapse { 
    position: fixed; 
    top: 60px; /* Ajusta segÃºn la altura de tu navbar */ 
    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ú  ------------------------  *


/* ------------------------Inicio - Screen 1 ------------------------  */

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Cambiado a min-height para mejor comportamiento en mÃ³vil */
  background-color: #308A9E;
  color: #fff;
  padding: 1rem; /* Reducido el padding para mÃ³viles */
  position: relative;
  margin-bottom: 1rem;
  box-sizing: border-box; /* Asegura que el padding no afecte las dimensiones */
}

.text-container {
  text-align: center;
  width: 100%; /* Ocupa todo el ancho disponible */
  max-width: 800px;
  padding: 0 1rem; /* Padding lateral para no pegar texto a bordes */
  box-sizing: border-box;
}

.hero-title {
  font-family: 'Hakuna Sans', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3rem); /* TamaÃ±o responsive */
  font-weight: bold;
  color: #000000;
  margin-bottom: 1rem;
  padding: 0.8rem 1.2rem; /* Padding reducido para mÃ³viles */
  border: 3px solid #fff;
  background-color: #ffffff;
  display: inline-block;
  box-shadow: 0 0 10px rgba(232, 228, 228, 0.5);
  width: auto; /* Permite que se ajuste al contenido */
  max-width: 100%; /* Evita que se salga de la pantalla */
  box-sizing: border-box;
  line-height: 1.2; /* Mejor espaciado entre lÃ­neas */
}

.hero-subtitle {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem); /* TamaÃ±o responsive */
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding: 0 0.5rem; /* PequeÃ±o padding para no pegar a bordes */
}

.hero-paragraph {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem); /* TamaÃ±o responsive */
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.5;
  padding: 0 0.5rem; /* PequeÃ±o padding para no pegar a bordes */
}

.hero-button {
  background-color: transparent;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem); /* TamaÃ±o responsive */
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
  background-color: #fff;
  color: #000;
}

/* Estilo de la cuadrÃ­cula */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 50px
  ),
  repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 50px
  );
  z-index: 0;
}

.text-container {
  position: relative;
  z-index: 1;
}

.brutal-btn {
  display: inline-block;
  padding: 1rem 2rem; /* Padding ligeramente reducido para mÃ³viles */
  background-color: #CD3334;
  color: white;
  border: 3px solid #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  text-decoration: none;
  font-family: 'Hakuna Sans', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0px #000000;
  margin: 1.5rem auto;
  max-width: 100%;
  white-space: normal; /* Cambiado para permitir mÃºltiples lÃ­neas si es necesario */
  text-overflow: ellipsis;
  box-sizing: border-box;
  width: auto; /* Ajusta al contenido pero respeta max-width */
}

.brutal-btn:hover {
  background-color: #E28413;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #000000;
  color: #000000;
}

.brutal-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0px #000000;
}

/* Efecto de borde interno */
.brutal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* ------------------------ Fin  - Screen 1  ------------------------  */




/* ------------------------ INICIO - servicios especÃ­ficos  ------------------------  */


:root {
  --brutalist-black: #000;
  --brutalist-white: #ffffff;
  --brutalist-blue: #6EC1E4;
  --brutalist-border: #000;
  --text-color: #333;
}



.digital-services-section {
  background-color: var(--brutalist-white);
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid var(--brutalist-border);
  box-shadow: 8px 8px 0px var(--brutalist-border);
  text-align: center; /* Centrar el contenido dentro de la secciÃ³n */
  margin-bottom: 1rem; /* Margen inferior para separar de la siguiente secciÃ³n */


}

.services-title {
  display: inline-block; /* Para comportarse como un botÃ³n */
  font-size: 1.5rem; /* TamaÃ±o de fuente reducido */
  color: #040404; /* Texto blanco para contraste */
  background-color: #f9fbfb; /* Fondo azul llamativo */
  font-weight: bold;
  padding: 5px 15px; /* Espaciado interno para parecer un botÃ³n */
  text-transform: uppercase; /* Texto en mayÃºsculas para impacto */
  border: 3px solid #000; /* Bordes gruesos para el estilo brutalist */
  margin: 0 auto 20px; /* Centrado y con espacio debajo */
  text-align: center;
  box-shadow: 4px 4px 0px #000; /* Sombra fuerte para brutalism */
  cursor: pointer; /* Indicar que es interactivo */
  transition: transform 0.2s ease;
  font-family: "Hakuna Sans";
  margin-bottom: 4rem; /* Margen inferior para separar de la siguiente secciÃ³n */

}



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

.service-card {
  position: relative;
  background-color: #f9fafa;
  border: 3px solid var(--brutalist-black);
  padding: 25px;
  box-shadow: 6px 6px 0px var(--brutalist-black);
  transition: transform 0.3s ease;
  text-align: center;
  font-family: "Hakuna Sans"

}



.service-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0px var(--brutalist-black);
}

.service-card-icon {
  font-size: 3rem;
  color: var(--brutalist-black);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card h3 {
  font-family: "Hakuna Sans", sans-serif;
  font-weight: bold; /* Asegura que el tÃ­tulo estÃ© en negrita */
  color: var(--brutalist-black);
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.service-card p {
  font-family: 'Matter SQ Regular', sans-serif; /* Cambia la fuente del texto explicativo */
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}

.badge-IA {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #4caf50, #1e88e5); /* Degradado atractivo */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); /* Sombra suave */
  text-transform: uppercase; /* Texto en mayÃºsculas */
  letter-spacing: 0.5px; /* Espaciado entre letras */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Animaciones suaves */
}

.badge-IA:hover {
  transform: scale(1.1); /* Ampliar ligeramente al pasar el cursor */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1); /* Aumentar la sombra */
}


.digital-strategies {
  margin-top: 40px;
  background-color: var(--brutalist-blue);
  border: 3px solid var(--brutalist-black);
  padding: 30px;
  box-shadow: 6px 6px 0px var(--brutalist-black);

}

.digital-strategies-description {
  text-align: center;
  font-family: 'Matter SQ Regular', sans-serif;
  color: var(--text-color);
  margin-bottom: 30px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: BAE1EC;
}

.sector-card {
  border: 3px solid var(--brutalist-black);
  padding: 20px;
  text-align: center;
  box-shadow: 4px 4px 0px var(--brutalist-black);
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0px var(--brutalist-black);
}

.sector-card-icon {
  font-size: 3rem;
  color: var(--brutalist-black);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sector-card h4 {
  font-family: 'Matter SQ Regular', sans-serif;
  color: var(--brutalist-black);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block; /* Cambia a inline-block para no ocupar todo el ancho */
  width: auto; /* Ancho automÃ¡tico */
  padding: 1rem 2rem; /* Ajusta el padding para dar espacio interno */
  background-color: var(--color-accent); /* Color de fondo del botÃ³n */
  color: white; /* Color del texto */
  border: 4px solid var(--color-border); /* Borde del botÃ³n */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 2rem;
  text-align: center;
  text-decoration: none;
  font-family: 'Hakuna Sans', sans-serif;
  margin: 2rem auto 0 auto; /* Centra el botÃ³n horizontalmente */
}

.cta-button:hover {
  background-color: var(--color-primary); /* Color de fondo al pasar el ratÃ³n */
  color: var(--color-accent); /* Color del texto al pasar el ratÃ³n */
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--color-border); /* Sombra al pasar el ratÃ³n */
}


@media (max-width: 768px) {
  .services-grid,
  .sector-grid {
      grid-template-columns: 1fr;
  }

  .services-title {
      font-size: 2rem;
  }
}

/* ------------------------ FIN - servicios especÃ­ficos  ------------------------  */


/* ------------------------ FIN - CÃ³mo Trabajamos  ------------------------  */


/* ------------------------ INICIO - CÃ³mo Trabajamos  - Diagrama  ------------------------  */



.section-title {
  display: inline-block;
  font-size: 1.5rem;
  color: #131212;
  background-color: #f9fbfb;
  font-weight: bold;
  padding: 5px 15px;
  text-transform: uppercase;
  border: 3px solid #000;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: 4px 4px 0px #000;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: "Hakuna Sans";  
  margin-bottom: 80px;
}

.process-container {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin-bottom: 5rem;

}
/* Contenedor de Base de Conocimientos */
.main-node {
  background-color:  #131212;
  color: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: "Matter Sq Regular";
}


/* AnimaciÃ³n color Banco de Conocimiento  */
.main-node:hover h2, .main-node:hover .icon-container i {
  color: #E28413;
  transition: color 0.3s ease;
}

/* Efecto de Hover con Cambio de Color y Sombra: */
.main-node:hover {
  background-color: #1e1e1e;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}



.main-node::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background-color: var(--primary-color);
}

.phase-container {
  margin-top: 3rem;
  position: relative;
}

.phase-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: var(--primary-color);
}

.phase-card {
  height: 100%;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Matter SQ Regular', sans-serif;

}


/* Color rojo CARD de alerta */
.phase-card-alertar {
  background-color: #CD3334; 
}

/* Color NARANJA  CARD de DETECTAR */
.phase-card-analizar {
  background-color: #E28413 

}

/* Color NARANJA  CARD de DETECTAR */
.phase-card-actuar {
  background-color: #308A9E; /* Amarillo claro */
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.phase-card .card-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.phase-card .card-text {
  margin-bottom: 1.5rem;
}

.activities-container {
  margin-top: 1.5rem;
}

.activity-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin: 0.3rem;
  display: inline-block;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.activity-badge:hover {
  background-color: var(--accent-color);
}

.icon-container {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* BotÃ³n CTA */
.cta-button {
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0;
  font-weight: 900;
  margin: 2rem auto 0;
  max-width: 300px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 0 #CD3334;
  border: 2px solid #000;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.cta-button:hover {
  background-color: #CD3334;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 12px 12px 0 #000;
  border-color: #CD3334;
}

/* Incluye animaciÃ³n de pulsaciÃ³n para llamar mÃ¡s la atenciÃ³n */
.cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 50%;
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(20);
    opacity: 0;
  }
}


/* FIN    BotÃ³n CTA */

@media (max-width: 768px) {
  .process-container {
      padding: 1.5rem;
  }
  
  .phase-container::before {
      width: 60%;
  }
  
  .phase-card {
      margin-bottom: 1.5rem;
  }
}


/* ------------------------ FIN -CÃ³mo trabajamos------------------------ */



/* ------------------------ FIN -CÃ³mo trabajamos------------------------ */


/* ------------------------ INICIO - Precios------------------------ */
/* ------------------------ INICIO - Precios------------------------ */
/* TÃ­tulo */
.precios-titulo {
  display: inline-block;
  font-size: 1.5rem;
  color: #131212;
  background-color: #f9fbfb;
  font-weight: bold;
  padding: 5px 15px;
  text-transform: uppercase;
  border: 3px solid #000;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: 4px 4px 0px #000;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: "Hakuna Sans";  
  margin-bottom: 80px;

}

/* SubtÃ­tulo */
/* Estilos para .subtitle */
.subtitle {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Matter SQ Regular', sans-serif;
  color: #b30c0c; /* AsegÃºrate de que el color del texto sea visible */
}

/* Contenedor donde estÃ¡ todo */
.pricing-section {
  background-color: #6EC1E4;
  padding: 20px;
  margin: 0;
  width: 100%;
  border: 5px solid #272727;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  text-align: center;
}

.pricing-card {
  background-color: #FFFFFF;
  color: #272727;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 3px solid #272727;
  transition: transform 0.3s ease;
  width: 100%; /* Ajusta el ancho para que sea mÃ¡s ancha */
  font-family: 'Matter SQ Regular', sans-serif;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: 'Hakuna Sans', sans-serif;
  font-weight: bold;
}

.pricing-card .price {
  font-size: 40px;
  color: #CD3334;
  margin-bottom: 10px;
  font-family: "Hakuna Sans";
}

.pricing-card .badge {
  display: block;
  background-color: #E28413;
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: 'Matter SQ Regular', sans-serif;
}

.pricing-card .subtitle {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Matter SQ Regular', sans-serif;
}

.pricing-card .feature-list {
  list-style: none;
  padding: 0;
}

.pricing-card .feature-list li {
  font-size: 17px;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: 'Matter SQ Regular', sans-serif;
  border-bottom: 1px solid #eee3e3;
}

.pricing-card .feature-list li:last-child {
  margin-bottom: 45px;
}

.pricing-card .benefits {
  text-align: left;
  font-family: 'Matter SQ Regular', sans-serif;
}

.pricing-card .benefits ul {
  list-style: none;
  padding: 0;
}

.pricing-card .benefits ul li {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
}

.pricing-card .btn-whatsapp {
  background-color: #E28413;
  color: #F3F3F3;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
  font-family: 'Helvetica', sans-serif;
}

.pricing-card .btn-whatsapp:hover {
  background-color: #CD3334;
}

.modal-content {
  background-color: #308A9E;
  color: #F3F3F3;
  border-radius: 10px;
  border: 5px solid #272727;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Helvetica', sans-serif;
}

.modal-title {
  font-size: 18px;
  font-family: "Hakuna Sans";
}

.modal-body {
  font-size: 16px;
  font-family: 'Matter SQ Regular', sans-serif;
}

/* Centrar la secciÃ³n "Nivel Pro" */
.pro-card {
  margin-top: -50px; /* Ajusta este valor segÃºn sea necesario */
}

/* Estilos para el contenedor de badges */
.pricing-card .badge-explicacion {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Matter SQ Regular', sans-serif;
}

.pricing-card .badge-explicacion p {
  font-size: 14px; /* Reduce el tamaÃ±o del texto */
  margin-bottom: 10px;
  color: #272727;
  font-family: 'Matter SQ Regular', sans-serif;
}




/* ------------------------ Inicio  - Por quÃ©  ------------------------  */
/* Variables globales */
:root {
  --brutalist-black: #000;
  --brutalist-white: #6EC1E4;
  --brutalist-border: #000;
  --text-color: #333;
}

/* SecciÃ³n principal */
.digital-agency-section {
  background-color: var(--brutalist-white);
  padding: 20px; /* Ajusta el padding segÃºn sea necesario */
  max-width: 1200px;
  margin: 60px auto 0 auto; /* AÃ±ade un margen superior de 60px */
  border: 3px solid var(--brutalist-border);
  box-shadow: 8px 8px 0px var(--brutalist-border);
  text-align: center; /* Centrar el contenido dentro de la secciÃ³n */
  position: relative; /* Para posicionar el tÃ­tulo de manera absoluta si es necesario */
}

/* TÃ­tulo centrado en la parte superior */
.Titulo-Porque {
  font-size: 1.5rem; /* TamaÃ±o de fuente ajustado */
  color: #040404; /* Color del texto */
  background-color: #f9fbfb; /* Fondo del tÃ­tulo */
  font-weight: bold;
  padding: 10px 20px; /* Espaciado interno para parecer un botÃ³n */
  text-transform: uppercase; /* Texto en mayÃºsculas para impacto */
  border: 3px solid #000; /* Bordes gruesos para el estilo brutalist */
  margin: 0 auto; /* Centrado horizontalmente */
  box-shadow: 4px 4px 0px #000; /* Sombra fuerte para brutalism */
  font-family: "Hakuna Sans";
  position: absolute; /* PosiciÃ³n absoluta para pegarlo al borde superior */
  top: 30px; /* Ajusta este valor para mover el tÃ­tulo hacia arriba */
  left: 50%;
  transform: translateX(-50%); /* Centrar horizontalmente */
  width: max-content; /* Ajustar el ancho segÃºn el contenido */
  
}

/* Estilos para las tarjetas de razones */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 90px; /* Ajusta este valor para dar espacio debajo del tÃ­tulo */
}

.reason-card {
  background-color: #f9fafa;
  border: 3px solid var(--brutalist-black);
  padding: 20px;
  box-shadow: 6px 6px 0px var(--brutalist-black);
  text-align: center;
  
}

.reason-card i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Hakuna Sans";
}

.reason-card p {
  font-size: 1rem;
  color: var(--text-color);
  font-family: 'Matter SQ Regular', sans-serif;

}

/* Estilos para el botÃ³n de llamada a la acciÃ³n */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 30px;
  background-color: var(--brutalist-black);
  color: var(--brutalist-white);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: var(--brutalist-white);
  color: var(--brutalist-black);
}



/* ------------------------ FIN  - Por quÃ©  ------------------------  */


/* ------------------------ INICIO - FAQ------------------------ */
:root {
  --primary-color: #308A9E;
  --secondary-color: #32ACC5;
  --highlight-color: #6EC1E4;
  --accent-color: #CD3334;
  --text-color: #000000;
}



.faq-container {
  background-color: var(--background-color);
  border: 4px solid var(--text-color);
  margin: 40px;
  padding: 40px;
}


.faq-header {
  text-align: center;
  margin-bottom: 40px;
  
}

.faq-header h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: "Hakuna Sans";
  background-color: #6EC1E4; /* Fondo del tÃ­tulo */
  display: inline-block; /* Ajusta el display a inline-block */
  padding: 10px 20px; /* Ajusta el padding segÃºn sea necesario */
  border-radius: 5px; /* Opcional: aÃ±ade bordes redondeados */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Opcional: aÃ±ade una sombra para efecto */
  font-family: "Hakuna Sans";

}


.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background-color: white;
  border: 3px solid var(--text-color);
  box-shadow: 8px 8px 0 var(--text-color);
  transition: all 0.3s ease;
  width: 80%;
  margin: 0 auto;
  font-family: 'Matter SQ Regular', sans-serif;

}

.faq-question {
  background-color: var(--highlight-color);
  color: white;
  padding: 20px;
  border-bottom: 3px solid var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  flex-grow: 1;
}

.faq-toggle {
  margin-left: 10px;
  font-weight: bold;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 20px;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 15px;
}

.faq-answer li {
  padding: 5px 0;
  border-bottom: none;
}

@media (max-width: 1024px) {
  .faq-container {
      margin: 20px;
      padding: 20px;
  }

  .faq-card {
      width: 95%;
  }
}
#resultados-y-metricas h2 {
  font-size: 1.5rem; /* TamaÃ±o de fuente mÃ¡s pequeÃ±o */
  color: #000000; /* Color de texto negro */
  text-align: center;
  margin: 40px 0; /* Espacio prominente arriba y abajo */
  background-color: #FFFFFF; /* Fondo blanco */
  padding: 10px; /* Padding ajustado para un tamaÃ±o mÃ¡s pequeÃ±o */
  border: 2px solid #000000; /* Borde negro */
  box-shadow: 4px 4px 0 #000000; /* Sombra ajustada para un tamaÃ±o mÃ¡s pequeÃ±o */
  position: relative;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
  
}

@media (max-width: 1024px) {
  #resultados-y-metricas {
      margin: 20px;
      padding: 20px;
  }

  #resultados-y-metricas h2 {
      font-size: 1.5rem;
      padding: 15px;
  }
}
/* ------------------------ FIN - FAQ------------------------ */








/* --------------------- FOOTER MEJORADO --------------------- */
#footer {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Nunito', sans-serif;
  padding: 50px 0 20px;
  border-top: 4px solid #000000;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col {
  padding: 15px;
  transition: all 0.3s ease;
}
.footer-box {
  border: 3px solid #060606;
  padding: 20px;
  height: 100%;
  box-shadow: 4px 4px #000000;
  background: white;
  transition: all 0.3s ease;
}
/* Efectos hover con los colores especÃ­ficos */
.footer-col[data-hover-color="#32ACC5"]:hover .footer-box {
  background-color: #32ACC5;
}
.footer-col[data-hover-color="#6EC1E4"]:hover .footer-box {
  background-color: #6EC1E4;
}
.footer-col[data-hover-color="#E28413"]:hover .footer-box {
  background-color: #E28413;
}
.footer-col[data-hover-color="#CD3334"]:hover .footer-box {
  background-color: #CD3334;
}
.footer-col:hover .footer-box {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px #000000;
}
.footer-title {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #000;
}
.footer-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* Mapa del sitio mejor organizado */
.sitemap-section {
  margin-bottom: 1rem;
}
.sitemap-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}
.sitemap-links {
  list-style: none;
  padding-left: 0;
}
.sitemap-links li {
  margin-bottom: 0.3rem;
}
.sitemap-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding-left: 0;
  transition: all 0.2s ease;
}
.sitemap-links a:hover {
  color: #000;
  font-weight: bold;
  padding-left: 5px;
}
.sitemap-links a:before {
  content: "â€¢";
  margin-right: 5px;
  color: #E28413;
}
/* Contacto */
.contact-list {
  list-style: none;
  
  padding-left: 0;
}
.contact-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}
.contact-list i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #000;
}
.contact-list a {
  color: #333333; /* Mismo color que el texto normal del footer */
  text-decoration: none; /* Quita el subrayado */
  transition: all 0.3s ease; /* TransiciÃ³n suave para efectos hover */
}
/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-icon {
  color: #000;
  background: #fff;
  border: 2px solid #000;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}
/* Copyright */
.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #000;
}
.copyright p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.legal-links {
  font-size: 0.8rem;  /* TamaÃ±o mÃ¡s pequeÃ±o */
}
.legal-link {
  color: #000000 !important;  /* Negro puro */
  text-decoration: none;      /* Sin subrayado */
  margin: 0 10px;            /* Espaciado entre enlaces */
  transition: all 0.3s ease; /* TransiciÃ³n suave (opcional) */
}
.legal-link:hover {
  color: #000000 !important;  /* Mantiene negro al pasar el mouse */
  text-decoration: underline; /* Subrayado al hover (opcional) */
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer-col {
    margin-bottom: 20px;
  }
  
  .footer-box {
    padding: 15px;
  }
}
@media (max-width: 767.98px) {
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-text, .contact-list li, .sitemap-links a {
    font-size: 0.85rem;
  }
}

/* 
Efecto Smooth sobre el mouse haciendo scrool  */
html {
  scroll-behavior: smooth;
}




  
  /* Establece el color de fondo deseado para los botones del menÃº desplegable */
  .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:hover {
    background-color: #66CCE3; /* Cambia 'red' por el color deseado */
  }


/*Texto superior pÃ¡gina inicial - Negrilla grande - Identificador
*/
#titulo1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 6vw;
}


/*IntertÃ­tulos
*/
.titulo2 {
  font-family: 'Oxygen', sans-serif;
  text-decoration: underline;
  font-weight: 800;
}

/*Separador con fondo de color */
.separadortitulo{
  background-color: #f8f9fa;
  padding: 50px;
  font-family: 'Noto Sans', sans-serif;
}


body {
  background:white;
  font-family: "Nunito", sans-serif;
}
h1{
  font-size: 85px;
}
h2{
  color: #66CCE3;
  font-weight: bold;
}
span {
  color: #66CCE3;
}
#footer{
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 20px;
}







/* ======================== ESTILOS ADICIONALES PILAR A ======================== */

/* Grid de 4 columnas para los servicios estratégicos */
.services-grid-4 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px;
}

/* Tarjeta destacada (la del medio) */
.service-destacado {
  position: relative;
  border-color: #CD3334 !important;
  border-width: 4px !important;
}

/* Badge de "MÁS SOLICITADO" */
.badge-destacado {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E28413;
  color: #fff;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 2px solid #000;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  z-index: 10;
}

/* Precios dentro de las tarjetas */
.service-price {
  font-size: 22px;
  font-weight: 900;
  color: #CD3334;
  margin: 20px 0 15px 0;
  text-align: center;
  font-family: "Hakuna Sans";
}

/* Link "Ver más detalles" */
.service-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #308A9E;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
  width: 100%;
}

.service-link:hover {
  color: #000;
}

/* Nota adicional en tarjeta 3 */
.service-note {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px dashed #ccc;
}

.service-note p {
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
  color: #000;
}

.link-relacionado {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #CD3334;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-relacionado:hover {
  color: #000;
}

/* Responsive: En móvil, una columna */
@media (max-width: 768px) {
  .services-grid-4 {
    grid-template-columns: 1fr !important;
  }
}


/* ======================== HERO MEJORADO - PILAR A ======================== */

/* Badge de urgencia */
.hero-badge {
  display: inline-block;
  background-color: #CD3334;
  color: #fff;
  padding: 8px 20px;
  margin-bottom: 20px;
  border: 3px solid #000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  box-shadow: 4px 4px 0px #000;
  animation: pulse-badge 2s infinite;
}

.hero-badge i {
  margin-right: 8px;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Mejorar subtítulo */
.hero-subtitle strong {
  color: #fff;
  font-size: 18px;
  display: block;
  margin-top: 10px;
  font-family: "Hakuna Sans";
}

/* USPs (3 puntos clave) */
.hero-usps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-usp {
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 15px 25px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Matter SQ Regular', sans-serif;
  transition: all 0.3s ease;
}

.hero-usp:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
}

.hero-usp i {
  font-size: 28px;
  color: #308A9E;
}

.hero-usp span {
  font-size: 14px;
  line-height: 1.3;
}

.hero-usp strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #CD3334;
  font-family: "Hakuna Sans";
}

/* CTAs duales */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 20px 0;
  flex-wrap: wrap;
}

.hero-button {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  border: 3px solid #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Hakuna Sans";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 5px 5px 0px #000;
}

.hero-button i {
  font-size: 20px;
}

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

/* Botón primario (emergencia) */
.hero-button-primary {
  background-color: #CD3334;
  color: #fff;
  animation: pulse-cta 2s infinite;
}

.hero-button-primary:hover {
  background-color: #E28413;
  color: #000;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 5px 5px 0px #000; }
  50% { box-shadow: 8px 8px 0px #000; }
}

/* Botón secundario */
.hero-button-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.3);
}

.hero-button-secondary:hover {
  background-color: #fff;
  color: #308A9E;
  border-color: #fff;
  box-shadow: 8px 8px 0px rgba(255, 255, 255, 0.5);
}

/* Nota de confianza */
.hero-trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  font-family: 'Matter SQ Regular', sans-serif;
}

.hero-trust i {
  color: #25D366;
  margin-right: 8px;
  font-size: 16px;
}

.hero-trust strong {
  color: #fff;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }
  
  .hero-usps {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-usp {
    width: 90%;
    max-width: 300px;
  }
  
  .hero-usp strong {
    font-size: 20px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 14px;
    padding: 14px 24px;
  }
  
  .hero-subtitle strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-usp {
    padding: 12px 20px;
  }
  
  .hero-usp i {
    font-size: 24px;
  }
  
  .hero-usp span {
    font-size: 13px;
  }
}



/* ======================== SECCIÓN PUENTE PILARES ======================== */

.pilares-section {
  background-color: #F3F3F3;
  padding: 60px 20px;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

.pilares-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.pilares-header {
  text-align: center;
  margin-bottom: 50px;
}

.pilares-title {
  display: inline-block;
  font-size: 1.8rem;
  color: #000;
  background-color: #fff;
  font-weight: 900;
  padding: 12px 30px;
  text-transform: uppercase;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
}

.pilares-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 15px;
}

/* Grid de 2 pilares */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Tarjetas de pilares */
.pilar-card {
  background-color: #fff;
  border: 4px solid #000;
  padding: 30px;
  box-shadow: 6px 6px 0px #000;
  transition: all 0.3s ease;
  position: relative;
}

.pilar-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px #000;
}

/* Pilar actual (Pilar A - destacado) */
.pilar-actual {
  border-color: #308A9E;
  border-width: 5px;
}

/* Pilar alternativo (Pilar B) */
.pilar-alternativo {
  border-color: #E28413;
  border-width: 4px;
}

/* Badges superiores */
.pilar-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 3px solid #000;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pilar-badge i {
  font-size: 14px;
}

.pilar-badge-actual {
  background-color: #308A9E;
  color: #fff;
}

.pilar-badge-alternativo {
  background-color: #E28413;
  color: #fff;
}

/* Ícono del pilar */
.pilar-icon {
  text-align: center;
  font-size: 3.5rem;
  margin: 20px 0;
  color: #000;
}

.pilar-actual .pilar-icon {
  color: #308A9E;
}

.pilar-alternativo .pilar-icon {
  color: #E28413;
}

/* Nombre del pilar */
.pilar-name {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
  font-family: "Hakuna Sans";
}

/* Timing (Presente/Pasado) */
.pilar-timing {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  font-family: 'Matter SQ Regular', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pilar-timing i {
  font-size: 18px;
}

.pilar-timing strong {
  color: #000;
  font-weight: 700;
}

/* Descripción */
.pilar-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
}

.pilar-description strong {
  color: #000;
  font-weight: 700;
}

/* Features list */
.pilar-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pilar-features li {
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-family: 'Matter SQ Regular', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pilar-features li:last-child {
  border-bottom: none;
}

.pilar-features i {
  color: #25D366;
  font-size: 16px;
  flex-shrink: 0;
}

/* Keywords tags */
.pilar-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  justify-content: center;
}

.keyword-tag {
  background-color: #F3F3F3;
  color: #333;
  padding: 5px 12px;
  font-size: 11px;
  border: 2px solid #ddd;
  font-family: 'Matter SQ Regular', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Botones CTA */
.pilar-cta {
  text-align: center;
  margin-top: 25px;
}

.pilar-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  border: 3px solid #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Hakuna Sans";
  box-shadow: 4px 4px 0px #000;
}

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

.pilar-button-actual {
  background-color: #308A9E;
  color: #fff;
}

.pilar-button-actual:hover {
  background-color: #fff;
  color: #308A9E;
}

.pilar-button-alternativo {
  background-color: #E28413;
  color: #fff;
}

.pilar-button-alternativo:hover {
  background-color: #fff;
  color: #E28413;
}

/* Nota aclaratoria inferior */
.pilares-note {
  background-color: #6EC1E4;
  border: 3px solid #000;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 4px 4px 0px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pilares-note i {
  font-size: 28px;
  color: #000;
  flex-shrink: 0;
}

.pilares-note p {
  margin: 0;
  font-size: 1rem;
  color: #000;
  font-family: 'Matter SQ Regular', sans-serif;
  text-align: left;
}

.pilares-note strong {
  font-weight: 700;
}

.pilares-note-link {
  color: #CD3334;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 5px;
}

.pilares-note-link:hover {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pilares-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .pilar-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .pilares-section {
    padding: 40px 15px;
  }
  
  .pilares-title {
    font-size: 1.3rem;
  }
  
  .pilares-subtitle {
    font-size: 1rem;
  }
  
  .pilar-name {
    font-size: 1.3rem;
  }
  
  .pilar-icon {
    font-size: 3rem;
  }
  
  .pilar-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .pilares-note {
    flex-direction: column;
    text-align: center;
  }
  
  .pilares-note p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pilar-badge {
    font-size: 10px;
    padding: 5px 15px;
  }
  
  .keyword-tag {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  .pilar-features li {
    font-size: 0.9rem;
  }
}


/* ======================== FASES DE CRISIS - TIMELINE ======================== */

.fases-crisis-section {
  background-color: #fff;
  padding: 70px 20px;
  border-bottom: 5px solid #000;
}

.fases-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.fases-header {
  text-align: center;
  margin-bottom: 60px;
}

.fases-title {
  display: inline-block;
  font-size: 1.8rem;
  color: #000;
  background-color: #6EC1E4;
  font-weight: 900;
  padding: 12px 30px;
  text-transform: uppercase;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
}

.fases-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 15px;
}

.fases-subtitle strong {
  color: #000;
  font-weight: 700;
}

/* Timeline horizontal */
.fases-timeline {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 50px;
  align-items: stretch;
}

/* Tarjetas de fase */
.fase-card {
  background-color: #F3F3F3;
  border: 4px solid #000;
  padding: 30px 20px;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.fase-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 0px #000;
}

/* Colores por fase */
.fase-antes {
  border-color: #308A9E;
  background-color: rgba(48, 138, 158, 0.05);
}

.fase-durante {
  border-color: #CD3334;
  background-color: rgba(205, 51, 52, 0.05);
  border-width: 5px; /* Destacada por ser la principal */
}

.fase-despues {
  border-color: #E28413;
  background-color: rgba(226, 132, 19, 0.05);
}

/* Número de fase */
.fase-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: "Hakuna Sans";
  border: 3px solid #000;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.fase-antes .fase-number { background-color: #308A9E; }
.fase-durante .fase-number { background-color: #CD3334; }
.fase-despues .fase-number { background-color: #E28413; }

/* Ícono */
.fase-icon {
  text-align: center;
  font-size: 3rem;
  margin: 20px 0 15px 0;
}

.fase-antes .fase-icon { color: #308A9E; }
.fase-durante .fase-icon { color: #CD3334; }
.fase-despues .fase-icon { color: #E28413; }

/* Nombre fase */
.fase-name {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* Momento */
.fase-momento {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 15px;
  font-style: italic;
}

/* Descripción */
.fase-description {
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  flex-grow: 1;
}

.fase-description strong {
  color: #000;
  font-weight: 700;
}

/* Features */
.fase-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px 0;
}

.fase-features li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
  font-family: 'Matter SQ Regular', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fase-features li:last-child {
  border-bottom: none;
}

.fase-features i {
  color: #25D366;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Keywords */
.fase-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}

.fase-tag {
  background-color: rgba(0,0,0,0.05);
  color: #333;
  padding: 4px 10px;
  font-size: 10px;
  border: 1px solid #ccc;
  font-family: 'Matter SQ Regular', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Botón */
.fase-button {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  border: 3px solid #000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hakuna Sans";
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  margin-top: auto;
}

.fase-antes .fase-button:hover {
  background-color: #308A9E;
  border-color: #308A9E;
}

.fase-durante .fase-button:hover {
  background-color: #CD3334;
  border-color: #CD3334;
}

.fase-despues .fase-button:hover {
  background-color: #E28413;
  border-color: #E28413;
}

/* Flechas conectoras */
.fase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #666;
}

.fase-arrow i {
  animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* Nota estratégica (link a contenido negativo) */
.fases-note-estrategica {
  background: linear-gradient(135deg, #E28413 0%, #CD3334 100%);
  border: 4px solid #000;
  padding: 30px;
  box-shadow: 6px 6px 0px #000;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-top: 50px;
}

.note-icon {
  font-size: 3rem;
  color: #fff;
  flex-shrink: 0;
  animation: icon-bounce 2s infinite;
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.note-content {
  flex-grow: 1;
}

.note-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  font-family: "Hakuna Sans";
  margin-bottom: 10px;
  text-transform: uppercase;
}

.note-text {
  font-size: 1rem;
  color: #fff;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 15px;
  line-height: 1.5;
}

.note-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  color: #000;
  padding: 12px 24px;
  border: 3px solid #000;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hakuna Sans";
  box-shadow: 4px 4px 0px #000;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.note-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
  background-color: #000;
  color: #fff;
}

.note-link i {
  font-size: 20px;
}

.note-extra {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 10px;
}

.note-inline-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.note-inline-link:hover {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .fases-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .fase-arrow {
    transform: rotate(90deg);
    font-size: 2rem;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .fases-crisis-section {
    padding: 50px 15px;
  }
  
  .fases-title {
    font-size: 1.4rem;
    padding: 10px 20px;
  }
  
  .fases-subtitle {
    font-size: 1rem;
  }
  
  .fase-card {
    padding: 25px 15px;
  }
  
  .fase-icon {
    font-size: 2.5rem;
  }
  
  .fase-name {
    font-size: 1.3rem;
  }
  
  .fase-button {
    font-size: 13px;
    padding: 10px 16px;
  }
  
  .fases-note-estrategica {
    flex-direction: column;
    padding: 25px 20px;
  }
  
  .note-icon {
    font-size: 2.5rem;
  }
  
  .note-title {
    font-size: 1.1rem;
  }
  
  .note-link {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .fase-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .fase-features li {
    font-size: 0.85rem;
  }
  
  .fase-tag {
    font-size: 9px;
  }
}



/* ======================== POR QUÉ HYPERCONECTADO - MEJORADO ======================== */

.porque-section {
  background-color: #F3F3F3;
  padding: 70px 20px;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

.porque-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.porque-header {
  text-align: center;
  margin-bottom: 60px;
}

.porque-title {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  background-color: #CD3334;
  font-weight: 900;
  padding: 12px 30px;
  text-transform: uppercase;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
}

.porque-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 15px;
}

.porque-subtitle strong {
  color: #CD3334;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Grid de razones */
.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Tarjetas */
.porque-card {
  background-color: #fff;
  border: 4px solid #000;
  padding: 30px 25px;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

/* Tarjeta destacada */
.porque-destacada {
  border-color: #CD3334;
  border-width: 5px;
  background: linear-gradient(135deg, #fff 0%, #FFF5F5 100%);
}

/* Badge */
.porque-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #CD3334;
  color: #fff;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 3px solid #000;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  z-index: 10;
}

/* Ícono */
.porque-icon {
  text-align: center;
  font-size: 3rem;
  color: #308A9E;
  margin-bottom: 20px;
}

.porque-destacada .porque-icon {
  color: #CD3334;
}

/* Nombre */
.porque-nombre {
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 20px;
  line-height: 1.3;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estadística destacada */
.porque-stat {
  text-align: center;
  background-color: #F3F3F3;
  border: 3px solid #000;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #CD3334;
  font-family: "Hakuna Sans";
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  font-family: 'Matter SQ Regular', sans-serif;
  letter-spacing: 0.5px;
}

/* Descripción */
.porque-descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 20px;
  flex-grow: 1;
}

.porque-descripcion strong {
  color: #000;
  font-weight: 700;
}

/* Bullets */
.porque-bullets {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.porque-bullets li {
  font-size: 0.9rem;
  padding: 6px 0;
  font-family: 'Matter SQ Regular', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.porque-bullets i {
  color: #25D366;
  font-size: 16px;
  flex-shrink: 0;
}

/* Proof point */
.porque-proof {
  background-color: #F3F3F3;
  border: 2px dashed #308A9E;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 0.85rem;
  color: #308A9E;
  font-family: 'Matter SQ Regular', sans-serif;
  font-weight: 600;
}

.porque-proof i {
  font-size: 18px;
  flex-shrink: 0;
}

/* CTA Final de sección */
.porque-cta-final {
  background: linear-gradient(135deg, #308A9E 0%, #6EC1E4 100%);
  border: 5px solid #000;
  padding: 40px 30px;
  box-shadow: 8px 8px 0px #000;
  text-align: center;
}

.cta-final-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-final-text {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-final-button {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  border: 4px solid #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Hakuna Sans";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 5px 5px 0px #000;
}

.cta-final-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000;
}

.cta-final-button i {
  font-size: 20px;
}

.cta-primary {
  background-color: #25D366;
  color: #000;
}

.cta-primary:hover {
  background-color: #fff;
  color: #25D366;
}

.cta-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.cta-secondary:hover {
  background-color: #fff;
  color: #308A9E;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .porque-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .porque-section {
    padding: 50px 15px;
  }
  
  .porque-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .porque-subtitle {
    font-size: 1rem;
  }
  
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .porque-card {
    padding: 25px 20px;
  }
  
  .porque-icon {
    font-size: 2.5rem;
  }
  
  .porque-nombre {
    font-size: 1.2rem;
    min-height: auto;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .porque-cta-final {
    padding: 30px 20px;
  }
  
  .cta-final-title {
    font-size: 1.5rem;
  }
  
  .cta-final-text {
    font-size: 1rem;
  }
  
  .cta-final-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-final-button {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .porque-badge {
    font-size: 10px;
    padding: 5px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .porque-descripcion {
    font-size: 0.9rem;
  }
  
  .porque-bullets li {
    font-size: 0.85rem;
  }
  
  .porque-proof {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

/* Animación sutil para tarjetas al cargar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.porque-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

/* Delay progresivo para cada tarjeta */
.porque-card:nth-child(1) { animation-delay: 0.1s; }
.porque-card:nth-child(2) { animation-delay: 0.2s; }
.porque-card:nth-child(3) { animation-delay: 0.3s; }
.porque-card:nth-child(4) { animation-delay: 0.4s; }
.porque-card:nth-child(5) { animation-delay: 0.5s; }
.porque-card:nth-child(6) { animation-delay: 0.6s; }
.porque-card:nth-child(7) { animation-delay: 0.7s; }
.porque-card:nth-child(8) { animation-delay: 0.8s; }




/* ======================== PROCESO MEJORADO - CÓMO TRABAJAMOS ======================== */

.proceso-section {
  background-color: #fff;
  padding: 70px 20px;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

.proceso-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.proceso-header {
  text-align: center;
  margin-bottom: 60px;
}

.proceso-title {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  background-color: #E28413;
  font-weight: 900;
  padding: 12px 30px;
  text-transform: uppercase;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
}

.proceso-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 15px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.proceso-subtitle strong {
  color: #000;
  font-weight: 700;
}

/* Timeline principal */
.proceso-timeline-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Wrapper de fase */
.proceso-fase-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Fases */
.proceso-fase {
  background-color: #F3F3F3;
  border: 5px solid #000;
  padding: 30px;
  box-shadow: 6px 6px 0px #000;
}

/* Colores por fase */
.proceso-fase-prevencion {
  border-color: #308A9E;
  background: linear-gradient(180deg, rgba(48,138,158,0.05) 0%, #F3F3F3 100%);
}

.proceso-fase-gestion {
  border-color: #CD3334;
  background: linear-gradient(180deg, rgba(205,51,52,0.05) 0%, #F3F3F3 100%);
}

.proceso-fase-recuperacion {
  border-color: #E28413;
  background: linear-gradient(180deg, rgba(226,132,19,0.05) 0%, #F3F3F3 100%);
}

/* Header de fase */
.fase-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #000;
}

.fase-numero-grande {
  width: 80px;
  height: 80px;
  background-color: #000;
  color: #fff;
  border: 4px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Hakuna Sans";
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.proceso-fase-prevencion .fase-numero-grande {
  background-color: #308A9E;
}

.proceso-fase-gestion .fase-numero-grande {
  background-color: #CD3334;
}

.proceso-fase-recuperacion .fase-numero-grande {
  background-color: #E28413;
}

.fase-header-content {
  flex-grow: 1;
}

.fase-timing {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.fase-titulo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fase-objetivo {
  font-size: 0.95rem;
  color: #666;
  font-family: 'Matter SQ Regular', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fase-objetivo i {
  font-size: 16px;
  color: #CD3334;
}

/* Protocolo destacado */
.protocolo-destacado {
  background-color: #CD3334;
  border: 4px solid #000;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 4px 4px 0px #000;
  text-align: center;
}

.protocolo-badge {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  border: 3px solid #000;
  margin-bottom: 12px;
}

.protocolo-badge i {
  margin-right: 8px;
}

.protocolo-destacado p {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Matter SQ Regular', sans-serif;
  margin: 0;
  line-height: 1.5;
}

.protocolo-destacado strong {
  font-weight: 900;
  font-family: "Hakuna Sans";
}

/* Pasos de fase */
.fase-pasos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

/* Paso card */
.paso-card {
  background-color: #fff;
  border: 3px solid #000;
  padding: 20px;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

/* Paso urgente */
.paso-urgente {
  border-color: #CD3334;
  border-width: 4px;
  background: linear-gradient(135deg, #fff 0%, #FFF5F5 100%);
}

/* Número paso */
.paso-numero {
  position: absolute;
  top: -12px;
  left: 15px;
  background-color: #000;
  color: #fff;
  width: 50px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: "Hakuna Sans";
  border: 2px solid #000;
}

.paso-card {
  position: relative;
}

/* Ícono paso */
.paso-icon {
  text-align: center;
  font-size: 2.5rem;
  color: #308A9E;
  margin-bottom: 15px;
  margin-top: 10px;
}

.proceso-fase-gestion .paso-icon {
  color: #CD3334;
}

.proceso-fase-recuperacion .paso-icon {
  color: #E28413;
}

/* Nombre paso */
.paso-nombre {
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
}

/* Descripción paso */
.paso-descripcion {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  text-align: center;
  margin-bottom: 15px;
  flex-grow: 1;
}

.paso-descripcion strong {
  color: #000;
  font-weight: 700;
}

/* Detalles paso */
.paso-detalles {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  font-family: 'Matter SQ Regular', sans-serif;
}

.paso-detalles li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  text-align: left;
  padding-left: 10px;
}

.paso-detalles li:last-child {
  border-bottom: none;
}

.paso-detalles li:before {
  content: "→ ";
  color: #308A9E;
  font-weight: 700;
  margin-right: 5px;
}

/* Tiempo paso */
.paso-tiempo {
  background-color: #F3F3F3;
  border: 2px solid #000;
  padding: 8px 12px;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #CD3334;
  font-family: "Hakuna Sans";
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.paso-tiempo i {
  font-size: 16px;
}

/* Entregable de fase */
.fase-entregable {
  background-color: #fff;
  border: 3px solid #000;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 3px 3px 0px #000;
}

.entregable-icon {
  font-size: 2.5rem;
  color: #25D366;
  flex-shrink: 0;
}

.entregable-content {
  font-size: 0.95rem;
  font-family: 'Matter SQ Regular', sans-serif;
  color: #333;
  line-height: 1.4;
}

.entregable-content strong {
  color: #000;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

/* Nota estratégica */
.fase-nota-estrategica {
  background-color: #6EC1E4;
  border: 3px solid #000;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 3px 3px 0px #000;
}

.fase-nota-estrategica i {
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
}

.fase-nota-estrategica strong {
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  display: block;
  margin-bottom: 8px;
}

.fase-nota-estrategica p {
  font-size: 0.9rem;
  color: #000;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 10px;
  line-height: 1.4;
}

.link-pilar-b {
  display: inline-block;
  color: #CD3334;
  font-weight: 700;
  text-decoration: underline;
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 0.9rem;
}

.link-pilar-b:hover {
  color: #000;
}

/* Conector entre fases */
.fase-connector {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fase-connector i {
  font-size: 3rem;
  color: #E28413;
  animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.fase-connector span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  letter-spacing: 1px;
}

/* CTA Final */
.proceso-cta-final {
  background: linear-gradient(135deg, #CD3334 0%, #E28413 100%);
  border: 5px solid #000;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 6px 6px 0px #000;
  margin-top: 50px;
}

.proceso-cta-final h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.proceso-cta-final p {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 25px;
}

.btn-activar-protocolo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background-color: #25D366;
  color: #000;
  border: 4px solid #000;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hakuna Sans";
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
}

.btn-activar-protocolo:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000;
  background-color: #fff;
  color: #25D366;
}

.btn-activar-protocolo i {
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fase-pasos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .proceso-section {
    padding: 50px 15px;
  }
  
  .proceso-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .proceso-subtitle {
    font-size: 1rem;
  }
  
  .proceso-fase {
    padding: 20px 15px;
  }
  
  .fase-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .fase-numero-grande {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .fase-titulo {
    font-size: 1.3rem;
  }
  
  .paso-card {
    padding: 20px 15px;
  }
  
  .paso-icon {
    font-size: 2rem;
  }
  
  .paso-nombre {
    font-size: 1rem;
  }
  
  .protocolo-destacado p {
    font-size: 1rem;
  }
  
  .fase-nota-estrategica {
    flex-direction: column;
  }
  
  .proceso-cta-final h3 {
    font-size: 1.4rem;
  }
  
  .btn-activar-protocolo {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 30px;
  }
}

@media (max-width: 480px) {
  .fase-numero-grande {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  
  .fase-timing {
    font-size: 0.7rem;
  }
  
  .paso-descripcion {
    font-size: 0.85rem;
  }
  
  .paso-detalles {
    font-size: 0.8rem;
  }
}


/* ======================== PRECIOS MEJORADO ======================== */

.precios-section {
  background-color: #F3F3F3;
  padding: 70px 20px;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

.precios-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.precios-header {
  text-align: center;
  margin-bottom: 40px;
}

.precios-title {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  background-color: #25D366;
  font-weight: 900;
  padding: 12px 30px;
  text-transform: uppercase;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
}

.precios-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 15px;
  line-height: 1.5;
}

.precios-subtitle strong {
  color: #000;
  font-weight: 700;
}

/* Nota superior */
.precios-nota-superior {
  background-color: #6EC1E4;
  border: 3px solid #000;
  padding: 20px 25px;
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 4px 4px 0px #000;
}

.precios-nota-superior i {
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
}

.precios-nota-superior div {
  font-size: 1rem;
  color: #000;
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.5;
}

.precios-nota-superior strong {
  font-weight: 900;
  font-family: "Hakuna Sans";
}

.nota-destacada {
  display: block;
  margin-top: 8px;
  color: #CD3334;
  font-weight: 700;
}

/* Grid de precios */
.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Tarjeta de precio */
.precio-card {
  background-color: #fff;
  border: 4px solid #000;
  padding: 30px 25px;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

/* Tarjeta destacada */
.precio-destacado {
  border-color: #CD3334;
  border-width: 5px;
  background: linear-gradient(180deg, #FFF5F5 0%, #fff 100%);
}

.precio-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #CD3334;
  color: #fff;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 3px solid #000;
  text-transform: uppercase;
  font-family: "Hakuna Sans";
  z-index: 10;
}

/* Header de precio */
.precio-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid #F3F3F3;
}

.precio-icono {
  font-size: 3rem;
  color: #308A9E;
  margin-bottom: 15px;
}

.precio-destacado .precio-icono {
  color: #CD3334;
}

.precio-nombre {
  font-size: 1.3rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.precio-descripcion-corta {
  font-size: 0.9rem;
  color: #666;
  font-family: 'Matter SQ Regular', sans-serif;
  font-style: italic;
}

/* Monto */
.precio-monto {
  text-align: center;
  background-color: #F3F3F3;
  border: 3px solid #000;
  padding: 20px 15px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.monto-desde {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  font-family: 'Matter SQ Regular', sans-serif;
  letter-spacing: 1px;
}

.monto-principal {
  font-size: 3rem;
  font-weight: 900;
  color: #CD3334;
  font-family: "Hakuna Sans";
  line-height: 1;
}

.monto-hasta {
  font-size: 0.9rem;
  color: #666;
  font-family: 'Matter SQ Regular', sans-serif;
}

.precio-monto-mensual .monto-principal {
  color: #308A9E;
}

/* Incluye */
.precio-incluye {
  margin-bottom: 20px;
  flex-grow: 1;
}

.precio-incluye h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
  text-transform: uppercase;
}

.precio-incluye ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.precio-incluye li {
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-family: 'Matter SQ Regular', sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.precio-incluye li:last-child {
  border-bottom: none;
}

.precio-incluye i {
  color: #25D366;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tiempo */
.precio-tiempo {
  background-color: #F3F3F3;
  border: 2px dashed #308A9E;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #308A9E;
  font-family: 'Matter SQ Regular', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.precio-tiempo i {
  font-size: 18px;
}

/* CTA */
.precio-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background-color: #308A9E;
  color: #fff;
  border: 3px solid #000;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hakuna Sans";
  box-shadow: 4px 4px 0px #000;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.precio-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
  background-color: #000;
}

.precio-cta-destacado {
  background-color: #CD3334;
}

/* Extras */
.precio-ahorro,
.precio-garantia,
.precio-nota-extra {
  font-size: 0.85rem;
  color: #666;
  font-family: 'Matter SQ Regular', sans-serif;
  text-align: center;
  padding: 10px;
  background-color: #F3F3F3;
  border: 2px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.precio-ahorro {
  color: #25D366;
  font-weight: 700;
}

.precio-ahorro i,
.precio-garantia i,
.precio-nota-extra i {
  font-size: 16px;
  flex-shrink: 0;
}

.precio-nota-extra a {
  color: #CD3334;
  font-weight: 700;
  text-decoration: underline;
}

/* Comparativa */
.precios-comparativa {
  background-color: #fff;
  border: 4px solid #000;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 0px #000;
}

.comparativa-titulo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.comparativa-tabla-wrapper {
  overflow-x: auto;
}

.comparativa-tabla {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Matter SQ Regular', sans-serif;
}

.comparativa-tabla thead {
  background-color: #000;
  color: #fff;
}

.comparativa-tabla th,
.comparativa-tabla td {
  padding: 15px;
  text-align: left;
  border: 2px solid #000;
}

.comparativa-tabla th {
  font-weight: 900;
  font-family: "Hakuna Sans";
  text-transform: uppercase;
  font-size: 0.9rem;
}

.comparativa-tabla td {
  font-size: 0.9rem;
}

.comparativa-tabla tbody tr:nth-child(even) {
  background-color: #F3F3F3;
}

.fila-destacada {
  background-color: #FFF5F5 !important;
  border: 3px solid #CD3334 !important;
}

.fila-destacada td {
  font-weight: 600;
}

/* Métodos de pago */
.precios-pagos {
  background-color: #fff;
  border: 4px solid #000;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 0px #000;
}

.pagos-titulo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.pagos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pago-item {
  background-color: #F3F3F3;
  border: 3px solid #000;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pago-item i {
  font-size: 2.5rem;
  color: #308A9E;
}

.pago-item span {
  font-size: 0.9rem;
  font-family: 'Matter SQ Regular', sans-serif;
  font-weight: 600;
  color: #333;
}

/* FAQ Precios */
.precios-faq {
  background-color: #6EC1E4;
  border: 4px solid #000;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 0px #000;
}

.faq-titulo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

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

.faq-item {
  background-color: #fff;
  border: 3px solid #000;
  padding: 20px;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item h4 i {
  color: #308A9E;
  font-size: 18px;
}

.faq-item p {
  font-size: 0.9rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.5;
  margin: 0;
}

/* CTA Final */
.precios-cta-final {
  background: linear-gradient(135deg, #25D366 0%, #308A9E 100%);
  border: 5px solid #000;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 6px 6px 0px #000;
}

.precios-cta-final h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.precios-cta-final p {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 25px;
  line-height: 1.5;
}

.precios-cta-final strong {
  font-weight: 900;
  font-family: "Hakuna Sans";
}

.btn-consulta-gratis {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background-color: #fff;
  color: #000;
  border: 4px solid #000;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hakuna Sans";
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
}

.btn-consulta-gratis:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000;
  background-color: #000;
  color: #fff;
}

.btn-consulta-gratis i {
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .precios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .precios-section {
    padding: 50px 15px;
  }
  
  .precios-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .precios-subtitle {
    font-size: 1rem;
  }
  
  .precios-grid {
    grid-template-columns: 1fr;
  }
  
  .precio-card {
    padding: 25px 20px;
  }
  
  .precio-nombre {
    font-size: 1.2rem;
    min-height: auto;
  }
  
  .monto-principal {
    font-size: 2.5rem;
  }
  
  .comparativa-tabla {
    font-size: 0.85rem;
  }
  
  .comparativa-tabla th,
  .comparativa-tabla td {
    padding: 10px;
  }
  
  .pagos-grid {
    grid-template-columns: 1fr;
  }
  
  .precios-cta-final h3 {
    font-size: 1.5rem;
  }
  
  .btn-consulta-gratis {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 30px;
  }
}

@media (max-width: 480px) {
  .precio-icono {
    font-size: 2.5rem;
  }
  
  .monto-principal {
    font-size: 2rem;
  }
  
  .precio-incluye li {
    font-size: 0.85rem;
  }
  
  .precios-nota-superior {
    flex-direction: column;
  }
}


/* ======================== FAQ MEJORADO ======================== */

.faq-section {
  background-color: #fff;
  padding: 70px 20px;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  background-color: #6EC1E4;
  font-weight: 900;
  padding: 12px 30px;
  text-transform: uppercase;
  border: 4px solid #000;
  box-shadow: 6px 6px 0px #000;
  font-family: "Hakuna Sans";
  margin-bottom: 15px;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-top: 15px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-subtitle strong {
  color: #000;
  font-weight: 700;
}

/* Categorías */
.faq-categorias {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}

/* Categoría */
.faq-categoria {
  background-color: #F3F3F3;
  border: 4px solid #000;
  padding: 30px;
  box-shadow: 5px 5px 0px #000;
}

.categoria-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid #000;
}

.categoria-header i {
  font-size: 2.5rem;
  color: #308A9E;
}

.categoria-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  font-family: "Hakuna Sans";
  text-transform: uppercase;
  margin: 0;
}

/* Items FAQ */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Item individual */
.faq-item {
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 3px 3px 0px #000;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 5px 5px 0px #000;
}

.faq-item.active {
  border-color: #308A9E;
  border-width: 4px;
}

/* Pregunta (botón) */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #F3F3F3;
}

.faq-item.active .faq-question {
  background-color: rgba(48, 138, 158, 0.1);
}

.question-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  font-family: "Hakuna Sans";
  flex: 1;
  line-height: 1.4;
}

.question-text i {
  font-size: 1.5rem;
  color: #308A9E;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Respuesta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  font-size: 1rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.7;
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #000;
  font-weight: 700;
}

.faq-answer u {
  text-decoration-color: #CD3334;
  text-decoration-thickness: 2px;
}

/* Listas en respuestas */
.faq-answer ul,
.faq-answer ol {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-answer li {
  font-size: 0.95rem;
  color: #333;
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.6;
  margin-bottom: 8px;
}

.faq-answer ul li {
  list-style: none;
  position: relative;
  padding-left: 10px;
}

.faq-answer ul li:before {
  content: "→";
  position: absolute;
  left: -15px;
  color: #308A9E;
  font-weight: 700;
}

/* Highlight box */
.highlight-box {
  background-color: #6EC1E4;
  border: 3px solid #000;
  padding: 15px 20px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 3px 3px 0px #000;
}

.highlight-box i {
  font-size: 1.8rem;
  color: #000;
  flex-shrink: 0;
}

.highlight-box strong {
  color: #000;
  font-weight: 900;
  font-family: "Hakuna Sans";
}

/* Comparativa simple */
.comparativa-simple {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.comp-item {
  background-color: #F3F3F3;
  border: 2px solid #000;
  padding: 12px 15px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Matter SQ Regular', sans-serif;
}

/* Tabla comparativa inline */
.tabla-comparativa-inline {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 0.9rem;
  font-family: 'Matter SQ Regular', sans-serif;
}

.tabla-comparativa-inline td {
  padding: 12px;
  border: 2px solid #000;
  vertical-align: top;
}

.tabla-comparativa-inline tr:first-child td {
  background-color: #000;
  color: #fff;
  font-weight: 900;
  font-family: "Hakuna Sans";
  text-transform: uppercase;
  font-size: 0.85rem;
}

.tabla-comparativa-inline tr:not(:first-child) td:first-child {
  background-color: #F3F3F3;
}

.tabla-comparativa-inline tr:not(:first-child) td:last-child {
  background-color: #FFF5F5;
}

/* CTA Final */
.faq-cta-final {
  background: linear-gradient(135deg, #308A9E 0%, #6EC1E4 100%);
  border: 5px solid #000;
  padding: 40px 30px;
  box-shadow: 6px 6px 0px #000;
}

.faq-cta-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-cta-content > i {
  font-size: 4rem;
  color: #fff;
  flex-shrink: 0;
}

.faq-cta-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Hakuna Sans";
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.faq-cta-content p {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-contacto-faq {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background-color: #25D366;
  color: #000;
  border: 4px solid #000;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Hakuna Sans";
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
}

.btn-contacto-faq:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000;
  background-color: #fff;
  color: #25D366;
}

.btn-contacto-faq i {
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }
  
  .faq-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-categoria {
    padding: 20px 15px;
  }
  
  .categoria-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .categoria-header i {
    font-size: 2rem;
  }
  
  .categoria-header h3 {
    font-size: 1.3rem;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .question-text {
    font-size: 1rem;
  }
  
  .question-text i {
    font-size: 1.2rem;
  }
  
  .faq-answer {
    padding: 0 15px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 20px 15px;
  }
  
  .faq-answer p,
  .faq-answer li {
    font-size: 0.9rem;
  }
  
  .highlight-box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tabla-comparativa-inline {
    font-size: 0.8rem;
  }
  
  .tabla-comparativa-inline td {
    padding: 8px;
  }
  
  .faq-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .faq-cta-content > i {
    font-size: 3rem;
  }
  
  .faq-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .faq-cta-content p {
    font-size: 1rem;
  }
  
  .btn-contacto-faq {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 25px;
  }
}

@media (max-width: 480px) {
  .question-text {
    font-size: 0.9rem;
  }
  
  .faq-icon {
    font-size: 1.2rem;
  }
  
  .faq-answer p,
  .faq-answer li {
    font-size: 0.85rem;
  }
  
  .comparativa-simple {
    font-size: 0.85rem;
  }
}

/* Animación de entrada progresiva */
.faq-item {
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ======================== FOOTER BRUTALISTA HYPERCONECTADO ======================== */

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

.footer-main {
  padding: 60px 20px 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Columnas */
.footer-col {
  background-color: transparent;
}

/* Logo Column */
.footer-col-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #6EC1E4;
  font-family: 'Matter SQ Regular', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Redes Sociales */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #308A9E;
  border-color: #308A9E;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #000;
}

/* Licencia */
.footer-license {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.footer-license img {
  display: block;
  margin-bottom: 8px;
}

.license-text {
  font-size: 0.75rem;
  color: #999;
  font-family: 'Matter SQ Regular', sans-serif;
  margin: 0;
  line-height: 1.4;
}

/* Títulos de Columnas */
.footer-col-titulo {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  font-family: "Hakuna Sans";
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #308A9E;
  letter-spacing: 1px;
}

/* Links Generales */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Matter SQ Regular', sans-serif;
  display: inline-block;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #308A9E;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-links a:hover:before {
  color: #6EC1E4;
}

/* Contacto */
.footer-contacto {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-contacto li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #E0E0E0;
  font-family: 'Matter SQ Regular', sans-serif;
}

.footer-contacto i {
  color: #308A9E;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contacto a {
  color: #E0E0E0;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-descripcion {
  font-size: 0.85rem;
  color: #999;
  font-family: 'Matter SQ Regular', sans-serif;
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

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

.footer-copyright p {
  color: #999;
  font-size: 0.85rem;
  font-family: 'Matter SQ Regular', sans-serif;
  margin: 0;
}

.footer-copyright #current-year {
  color: #fff;
  font-weight: 700;
}

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

/* Tablet */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-col-logo {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 20px 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-col-logo {
    grid-column: 1;
    padding-bottom: 30px;
    border-bottom: 3px solid rgba(48,138,158,0.3);
  }
  
  .footer-col-titulo {
    font-size: 0.95rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .footer-contacto li {
    font-size: 0.85rem;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
  }
}

/* Extra Small */
@media (max-width: 480px) {
  .footer-main {
    padding: 30px 15px 20px 15px;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .footer-logo {
    max-width: 150px;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* ===== 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);
    }
}

/* Opcional: Ajustar tagline para que combine con el efecto */
.footer-tagline {
    margin-top: 1rem;
    color: #A8D8EA;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
