/* =========================================
   Archivo: style.css
   Descripción: Estilos completos para index.html y form.html 
   (reset, tipografía, header, overlay de menú, secciones con fondo común,
   hero, características, cómo funciona, CTA final, formulario y footer)
============================================ */

/* ---------------------------------------
   RESET Y TIPOGRAFÍA
--------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

/* ---------------------------------------
   VARIABLES DE COLOR DE LINKEAO
--------------------------------------- */
/* Gris oscuro:       #423F3F
   Amarillo:          #EEDD14
   Amarillo acento:   #F29F05
   Blanco puro:       #FFFFFF
   Gris claro:        #F1F1F1
   Gris medio:        #555555
   Fondo iconos:      #2B2A2A
*/

/* ========================================
   HEADER / NAVBAR COMÚN (index.html y form.html)
======================================== */

/* HEADER CENTRADO CON TEXTO “LINKEAO” */
#siteHeader {
  background-color: #423F3F;
  padding: 1rem 0;
  z-index: 1050;
}
#siteHeader .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #EEDD14;
  letter-spacing: 1px;
  text-align: center;
}

/* ÍCONO “HAMBURGUESA” (SUPERIOR IZQ.) */
#menuToggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1051; /* Encima del header */
  cursor: pointer;
}
#menuToggle svg {
  width: 28px;
  height: 28px;
  stroke: #EEDD14; /* Amarillo principal */
  fill: none;
}
#menuToggle:hover svg {
  stroke: #F29F05; /* Amarillo acento */
}

/* OVERLAY DEL MENÚ */
#overlayNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 63, 0.97); /* Gris oscuro opaco */
  transform: translateY(-100%); /* oculto inicialmente fuera de pantalla */
  transition: transform 0.35s ease-in-out;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
#overlayNav.open {
  transform: translateY(0);
}
#overlayNav .overlay-content {
  text-align: center;
  width: 90%;
  max-width: 280px;
}
.overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.overlay-menu .nav-link {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.overlay-menu .nav-link:hover {
  color: #EEDD14; /* Amarillo principal */
}

/* ========================================
   SECCIÓN HERO (index.html)
======================================== */
#heroSection {
  position: relative;
  height: 100vh;
  background: url('img/Blue line connect Technology Zoom Virtual Background.png')
    center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  scroll-snap-align: start;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 63, 0.5);
  z-index: 1;
}
#heroSection .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1rem;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #F1F1F1;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.5;
}
#heroSection .btn-light {
  background-color: #FFFFFF;
  color: #423F3F;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#heroSection .btn-light:hover {
  background-color: #F1F1F1;
  color: #2B2A2A;
}
/* Indicador de scroll hacia abajo */
.scroll-down-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, 8px);
  }
  60% {
    transform: translate(-50%, 4px);
  }
}

/* ========================================
   SECCIÓN “CARACTERÍSTICAS” FLUIDA (index.html)
======================================== */
#featuresSection {
  position: relative;
  scroll-snap-align: start;
}
.feature-block {
  position: relative;
  height: 100vh;
  background: url('img/Blue line connect Technology Zoom Virtual Background.png')
    center center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  scroll-snap-align: start;
  padding-top: 5rem; /* Para separar texto de arriba */
}
.feature-block .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 63, 0.5);
  z-index: 1;
}
.feature-block .container {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 1rem;
}
.feature-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.feature-block p {
  font-size: 1.125rem;
  color: #EAEAEA;
  line-height: 1.6;
}
.feature-block img {
  display: block;
  margin-top: 1rem;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

/* ========================================
   SECCIÓN “CÓMO FUNCIONA” (index.html)
   – Ahora con ALTURA COMPLETA y MISMA TONALIDAD que el resto
   – Se añadió padding horizontal para evitar texto pegado a la izquierda
======================================== */
#howItWorksSection {
  position: relative;
  height: 100vh; /* altura completa */
  padding: 0;    /* elimina padding vertical extra */
  background: url('img/Blue line connect Technology Zoom Virtual Background.png')
    center center/cover no-repeat;
  scroll-snap-align: start;
}
#howItWorksSection .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 63, 0.5);
  z-index: 1;
}
/* Contenedor centrado verticalmente, con padding horizontal */
#howItWorksSection .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%; /* para centrar vertical */
  padding: 0 2rem; /* se agrega padding horizontal */
}
#howItWorksSection .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #FFFFFF; /* texto en blanco */
}
#howItWorksSection .row {
  max-width: 800px;
  margin: 0 auto; /* centrar la fila */
}
#howItWorksSection .step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  background-color: #EEDD14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#howItWorksSection .step-icon i {
  color: #423F3F;
}
#howItWorksSection h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #FFFFFF;
}
#howItWorksSection p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #EAEAEA;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: center;
}

/* ========================================
   SECCIÓN FINAL CON CTA (index.html)
   – Ahora con ALTURA COMPLETA y MISMA TONALIDAD que el resto
   – Mejora del botón “Contáctanos Ahora”
======================================== */
#finalCTA {
  position: relative;
  height: 100vh; /* altura completa */
  padding: 0;    /* elimina padding vertical extra */
  background: url('img/Blue line connect Technology Zoom Virtual Background.png')
    center center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  scroll-snap-align: start;
}
#finalCTA .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 63, 0.5);
  z-index: 1;
}
#finalCTA .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%; /* para centrar vertical */
  padding: 0 2rem; /* se agrega padding horizontal */
}
#finalCTA h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
#finalCTA p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #EAEAEA;
}

/* Estilos mejorados para el botón “Contáctanos Ahora” */
#finalCTA a.btn-primary {
  display: inline-block;
  background-color: #EEDD14;     /* Amarillo principal */
  color: #423F3F;                /* Texto oscuro */
  padding: 0.75rem 2rem;         /* Más ancho y alto para mejor presencia */
  font-size: 1.25rem;            /* Texto más grande */
  font-weight: 700;              /* Negrita para visibilidad */
  border-radius: 50px;           /* Botón redondeado estilo “capsule” */
  text-decoration: none;         /* Quitar subrayado */
  transition: background-color 0.2s ease, transform 0.2s ease;
}
#finalCTA a.btn-primary:hover {
  background-color: #F29F05;     /* Amarillo acento al pasar */
  color: #FFFFFF;                /* Texto blanco */
  transform: translateY(-2px);   /* Pequeño levantamiento al hover */
}
#finalCTA a.btn-primary:active {
  background-color: #d68703;     /* Tono más oscuro al presionar */
  transform: translateY(0);
}
#finalCTA a.btn-primary:focus {
  outline: 3px solid rgba(238, 221, 20, 0.5); /* Anillo de foco amarillo semitransparente */
}

/* ========================================
   PIE DE PÁGINA (index.html y form.html)
======================================== */
footer {
  background-color: #2B2A2A;
  color: #CCCCCC;
  padding: 2rem 1rem;
  text-align: center;
}
footer p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
footer p.small {
  font-size: 0.8rem;
  color: #777777;
}

/* ========================================
   SECCIÓN FORMULARIO DE CONTACTO (form.html)
   – Única modificación en pantalla de escritorio
======================================== */
#contactSection {
  padding: 4rem 1rem;
  background-color: #F9F9F1;
}

/* Mantener iconos centrados en todas las pantallas */
.contact-icons {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-icons a {
  text-decoration: none;
}
.contact-icons .bi-whatsapp,
.contact-icons .bi-instagram {
  font-size: 3rem; /* Énfasis en los íconos */
  transition: transform 0.2s ease;
}
.contact-icons .bi-whatsapp:hover,
.contact-icons .bi-instagram:hover {
  transform: scale(1.15);
}

/* Estilos generales de la tarjeta del formulario */
.form-card {
  border-radius: 8px;
  background-color: #F1F1F1; /* Gris claro para énfasis secundario */
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Centra siempre la tarjeta */
}
.form-card:hover {
  background-color: #e0e0e0;
}

/* Cuerpo interno de la tarjeta */
.form-card .card-body {
  padding: 2rem;
}

/* Etiquetas y campos del formulario */
.contact-form .form-label {
  font-weight: 500;
  color: #555555;
}
.contact-form .form-control {
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  padding: 0.75rem;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control:focus {
  border-color: #423F3F;
  box-shadow: 0 0 5px rgba(66, 63, 63, 0.2);
}

/* Botón de envío */
.contact-form button[type="submit"] {
  background-color: #423F3F;
  border-color: #423F3F;
  color: #FFFFFF;
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  margin-top: 1rem;
}
.contact-form button[type="submit"]:hover {
  background-color: #2f2c2c;
}

/* ======== Ajustes ESPECÍFICOS PARA PANTALLA DE ESCRITORIO ======== */
/* A partir de 992px (Bootstrap “lg”), restringir ancho máximo del formulario y ajustar disposición */
@media (min-width: 992px) {
  /* Dar un ancho fijo (máximo) a la tarjeta del formulario para que no ocupe todo el ancho en desktop */
  #contactSection .form-card {
    max-width: 600px;
  }

  /* Asegurar que cada grupo de etiqueta + campo quede en una sola línea (label arriba, input debajo, sin floats inesperados) */
  #contactSection .contact-form .mb-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Forzar que el campo de texto rellene todo el ancho disponible dentro de la tarjeta */
  #contactSection .contact-form .form-control {
    width: 100%;
  }
}

/* ========================================
   SCROLL SNAP CONFIGURATION (index.html)
======================================== */
html, body {
  scroll-snap-type: y mandatory;
}

/* ========================================
   REGLAS RESPONSIVAS
======================================== */
/* Pantallas medianas (<768px) */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .feature-block h2 {
    font-size: 2rem;
  }
  .feature-block p {
    font-size: 1rem;
  }
  #howItWorksSection .step-icon {
    width: 60px;
    height: 60px;
  }
  #howItWorksSection h5 {
    font-size: 1rem;
  }
  #howItWorksSection p {
    font-size: 0.95rem;
  }
  #finalCTA h2 {
    font-size: 2rem;
  }
  #finalCTA p {
    font-size: 1rem;
  }
  #finalCTA a.btn-primary {
    font-size: 1.125rem;
    padding: 0.6rem 1.8rem;
  }
  .contact-icons .bi-whatsapp,
  .contact-icons .bi-instagram {
    font-size: 2.75rem;
  }
  .form-card .card-body {
    padding: 1.75rem;
  }
  .contact-form button[type="submit"] {
    font-size: 0.95rem;
  }
}

/* Pantallas pequeñas (<576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .feature-block h2 {
    font-size: 1.75rem;
  }
  .feature-block p {
    font-size: 0.95rem;
  }
  #howItWorksSection .step-icon {
    width: 50px;
    height: 50px;
  }
  #howItWorksSection h5 {
    font-size: 0.95rem;
  }
  #howItWorksSection p {
    font-size: 0.9rem;
  }
  #finalCTA h2 {
    font-size: 1.75rem;
  }
  #finalCTA p {
    font-size: 0.95rem;
  }
  #finalCTA a.btn-primary {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
  .contact-icons .bi-whatsapp,
  .contact-icons .bi-instagram {
    font-size: 2.5rem;
  }
  .form-card .card-body {
    padding: 1.5rem;
  }
  .contact-form button[type="submit"] {
    font-size: 0.9rem;
  }
}

/* ================================
   BOTÓN ANIMADO “Descubre Más”
   Basado en el CSS de Uiverse.io, adaptado a colores Linkeao
================================= */
.discover-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  height: 3rem;
  margin: 1rem auto 0;         /* centrado horizontal y pequeño espacio superior */
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: transform 0.5s ease;
  animation: gradient-linkeao 5s ease infinite;
  border: double 4px transparent;
  background-image:
    linear-gradient(#212121, #212121), /* capa base: casi negro */
    linear-gradient(
      137.48deg,
      #EEDD14 10%,   /* amarillo Linkeao */
      #F29F05 45%,   /* amarillo acento */
      #8F51EA 67%,   /* morado intermedio (puedes ajustar si no usas morado) */
      #423F3F 87%    /* gris oscuro Linkeao */
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  text-decoration: none; /* Sin subrayado */
}

/* Texto dentro del botón */
.discover-btn strong {
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* Contenedor de estrellas (invisible hasta hover) */
#container-stars {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: background-color 0.5s ease, z-index 0.5s ease;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

/* Capa que genera las estrellas en movimiento */
#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

/* Puntos que simulan estrellas cayendo */
#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 90s linear infinite;
  background-image: radial-gradient(#FFFFFF 1px, transparent 1%);
  background-size: 50px 50px;
}
#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 60s linear infinite;
  background-image: radial-gradient(#FFFFFF 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* “Resplandor” detrás del botón */
#glow {
  position: absolute;
  display: flex;
  width: 12rem;
  top: 0;
  left: 0;
  height: 3rem;
  z-index: 0;
  pointer-events: none;
}

/* Círculos difuminados para efecto de pulso */
.circle {
  width: 100%;
  height: 100%;
  filter: blur(2rem);
  animation: pulse-linkeao 4s infinite;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: rgba(238, 221, 20, 0.6); /* amarillo claro */
}

.circle:nth-of-type(2) {
  background: rgba(242, 159, 5, 0.8); /* amarillo acento */
}

/* Hover sobre el botón: muestran estrellas y escalan */
.discover-btn:hover #container-stars {
  z-index: 1;
  background-color: #212121; /* oscurece un poco al pasar */
}
.discover-btn:hover {
  transform: scale(1.1);
}

/* Estado al presionar (active): quita animación y cambia borde */
.discover-btn:active {
  border: double 4px #fe53bb;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}
.discover-btn:active .circle {
  background: #fe53bb; /* rosa cuando está presionado */
}

/* Animación estrellas vertical */
@keyframes animStar {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-135rem);
  }
}

/* Animación rotación de estrellas */
@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}

/* Animación de gradiente de fondo */
@keyframes gradient-linkeao {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animación pulso de glow */
@keyframes pulse-linkeao {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* =========================================
   ESTILOS PARA LA SECCIÓN “PAQUETES”
   (id="pricingSection", cards adaptadas al tema de Linkeao)
============================================ */

/* Contenedor de tarjetas */
#pricingSection {
  position: relative;
  /* el fondo ya lo hereda del inline-style en el HTML:
     background: url('img/Blue line connect Technology Zoom Virtual Background.png') center center/cover no-repeat; */
  scroll-snap-align: start;
  /* Ajustamos padding interno para separar del borde */
  padding: 4rem 1rem;
}

/* Overlay semitransparente igual que en otras secciones */
#pricingSection .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 63, 0.5);
  z-index: 1;
}

/* Dentro del container, subimos el z-index para que el contenido aparezca sobre el overlay */
#pricingSection .container {
  position: relative;
  z-index: 2;
}

/* Título de la sección */
#pricingSection .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-align: center;
}

/* Contenedor flex para las tarjetas, centrado y con separación */
#pricingSection .pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* ===========================
   Estilos individuales de cada tarjeta (card)
   =========================== */

/* Base de la tarjeta */
#pricingSection .card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  width: 16rem;
  background-color: rgba(66, 63, 63, 0.90); /* Fondo oscuro semitransparente */
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pequeño “badge” semiesférico en la esquina superior derecha */
#pricingSection .card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-color: #EEDD14; /* Amarillo principal */
  background-image: linear-gradient(
    135deg,
    #EEDD14 0%,
    #F29F05 100%
  );
  border-radius: 50%;
  box-shadow:
    0 0 8px #EEDD14,
    0 0 16px #F29F05;
  z-index: 1;
}

/* Al pasar el ratón sobre la tarjeta, hacemos un leve “lift” */
#pricingSection .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Título del paquete */
#pricingSection .card .title {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.25rem;
  z-index: 2;
}

/* Precio grande */
#pricingSection .card .pricing {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 0;
  z-index: 2;
}

/* Texto “/ mes” o “/ año” */
#pricingSection .card .pricing .pricing-time {
  font-size: 1rem;
  color: #EAEAEA;
  font-weight: 500;
}

/* Subtítulo (ej. “Incluye:” / “Todo de Básico más:”, etc.) */
#pricingSection .card .sub-title {
  font-size: 0.9rem;
  color: #EAEAEA;
  font-weight: 500;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  z-index: 2;
}

/* Lista de características */
#pricingSection .card .list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

#pricingSection .card .list .list-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 500;
}

/* Icono de check personalizado, color amarillo */
#pricingSection .card .list .list-item .check {
  font-size: 1.2rem;
  color: #EEDD14;
  margin-right: 0.5rem;
}

/* Botón de selección */
#pricingSection .card .button {
  position: relative;
  z-index: 2;
  background-color: #EEDD14;   /* Amarillo principal */
  color: #423F3F;              /* Texto oscuro */
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 8px rgba(238, 221, 20, 0.4);
}

#pricingSection .card .button:hover {
  background-color: #F29F05;   /* Amarillo acento */
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(242, 159, 5, 0.6);
}

#pricingSection .card .button:active {
  background-color: #d6a204;   /* Tono más oscuro al presionar */
  transform: translateY(0);
}

/* Para que el texto dentro del botón esté centrado */
#pricingSection .card .button .text-button {
  position: relative;
  z-index: 3;
}

/* =========================================
   REGLAS RESPONSIVAS PARA “PAQUETES”
============================================ */

/* Desktop grande (>992px) */
@media (min-width: 992px) {
  #pricingSection .pricing-cards-container .card {
    /* dejar 3 cards en fila, separadas con gap (ya maneja por flex-wrap) */
    flex: 0 0 auto;
  }
}

/* Tablet / Escritorio mediano (>=768px y <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #pricingSection .pricing-cards-container {
    gap: 1rem;
  }
  #pricingSection .pricing-cards-container .card {
    width: 14rem;
  }
}

/* Móvil (ancho <768px) */
@media (max-width: 767.98px) {
  #pricingSection .pricing-cards-container {
    gap: 1rem;
  }
  #pricingSection .pricing-cards-container .card {
    width: 100%;
    max-width: 20rem;
  }
}

/* ===========================
   Estilos para los botones de los paquetes
   Ajustados al diseño de Linkeao
   =========================== */

/* Asegura que el contenedor padre posicione el botón correctamente */
.pricing-cards-container .card {
  position: relative;
}

/* Estilo base del botón dentro de cada card */
.pricing-cards-container .card .button {
  display: inline-block;               /* Permite centrar y controlar ancho */
  width: 100%;                         /* Ocupa todo el ancho de la tarjeta */
  margin-top: 1rem;                    /* Separación respecto al listado */
  padding: 0.75rem 1rem;               /* Altura y relleno interno */
  background-color: #EEDD14;           /* Amarillo principal de Linkeao */
  color: #212121;                      /* Texto oscuro para buen contraste */
  font-size: 1rem;                     /* Tamaño de texto legible */
  font-weight: 600;                    /* Negrita ligera */
  text-align: center;                  /* Centra el texto dentro del botón */
  text-decoration: none;               /* Elimina subrayados (si es <a>) */
  border: none;                        /* Sin bordes adicionales */
  border-radius: 0.5rem;               /* Bordes ligeramente redondeados */
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil para "flotar" */
  cursor: pointer;                     /* Indicador de que es clicable */
}

/* Hover: cambia a tono de acento y texto blanco */
.pricing-cards-container .card .button:hover {
  background-color: #F29F05;           /* Amarillo acento al pasar */
  color: #FFFFFF;                      /* Texto blanco para contraste */
  transform: translateY(-2px);         /* Leve elevación al pasar el mouse */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Active/Presionado: tono aún más oscuro y sin elevación */
.pricing-cards-container .card .button:active {
  background-color: #d6a504;           /* Amarillo más oscuro al presionar */
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Focus: outline sutil para accesibilidad (rodilla de teclado) */
.pricing-cards-container .card .button:focus {
  outline: 3px solid rgba(238, 221, 20, 0.5);
  outline-offset: 2px;
}

/* Si el botón es un enlace (<a>), aseguramos que no pierda el estilo */
.pricing-cards-container .card a.button {
  display: inline-block;
}

/* Ajustes responsivos: reduce un poco el padding y fuente en móviles */
@media (max-width: 767.98px) {
  .pricing-cards-container .card .button {
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
  }
}

/* ================================================
   SCROLL INDICATOR: FLECHA CIRCULAR CENTRADA ABAJO
   ================================================ */

/* 1) posición absoluta abajo+centro dentro de cada .feature-block */
.feature-block {
  position: relative; /* necesario para contener el indicador */
}
.feature-block .scroll-indicator {
  position: absolute;
  bottom: 1rem;             /* a 1rem del borde inferior del bloque */
  left: 50%;                /* centro horizontal del bloque */
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 3;               /* encima del overlay */
}

/* 2) icono interno (Bootstrap icon) más grande o ajustable */
.feature-block .scroll-indicator i {
  font-size: 1.25rem;       /* ajusta el tamaño de la flecha */
  color: #FFFFFF;
  animation: bounce-arrow 2s infinite;
}

/* 3) hover sobre el indicador */
.feature-block .scroll-indicator:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateX(-50%) translateY(-2px);
}

/* 4) keyframes para animar la flecha (bajar-subir) */
@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(6px);
    opacity: 0.7;
  }
  60% {
    transform: translateY(3px);
    opacity: 0.85;
  }
}

/* 5) ajuste responsivo: tamaños menores en pantallas pequeñas */
@media (max-width: 575.98px) {
  .feature-block .scroll-indicator {
    width: 2rem;
    height: 2rem;
    bottom: 0.75rem;
  }
  .feature-block .scroll-indicator i {
    font-size: 1rem;
  }
}

