/*  VARIABLES GLOBALES */

.wa-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  background: none;
  padding: 0;
  border-radius: 100px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 105px;
  right: 40px;
  z-index: 9999;
  cursor: pointer;
  border: 2px solid #cadefa9e;
  bottom: 43%;
}
.wa-widget .wa-bubble {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 74px 14px 25px 14px;
    margin: 0;
    background-color: #ffffff;
    color: #11a3eb;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 30px 30px 30px 30px; /* parte inferior redondeada visualmente arriba */
    user-select: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* opcional para darle profundidad */
}


.wa-widget .wa-icon {
  position: fixed;
  bottom: 84px;
  width: 105px;
  height: 105px;
  padding: 10px;
  margin: 0;
  bottom: 10%;
  display: block;
  user-select: none;
  z-index: 99999;
}

.pulsate-bck {
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}

@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

:root {
  --color-black: #1E1E1E;
  --color-blue: #066FF9;
  --color-blue-light: #00A3FF;
  --color-gray: #646464;
  --font-family: 'Poppins', sans-serif;
  --spacing: 8px;
}

a{
  text-decoration: none;
}

/* ðŸ§± BASE */
body {
  font-family: var(--font-family);
  color: var(--color-black);
  background-color: #fff;
  margin: 0;
  padding: 0;
  transition: background 1s ;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #ffffff -10%, #e9f6ff 60%, #bfe9ff 100%);
  opacity: 0; /* invisible al inicio */
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.8s ease-in-out;
}

/* cuando activamos el fondo degradado */
body.bg-gradient-active::before {
  opacity: 1;
}
/* ðŸ“ ESCALA TIPOGRÃFICA */
.fs-12 { font-size: 12px; line-height: 20px; }
.fs-14 { font-size: 14px; line-height: 22px; }
.fs-16 { font-size: 16px; line-height: 24px; }
.fs-18 { font-size: 18px; line-height: 26px; }
.fs-24 { font-size: 24px; line-height: 32px; }
.fs-32 { font-size: 32px; line-height: 40px; }
.fs-40 {font-size: 30px; line-height: 38px;}
.fs-72 { font-size: 72px; line-height: 80px; }

.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

/* ðŸ§Š NAVBAR GLASS + STICKY */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; /* El fondo real se renderiza en el pseudo-elemento */
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Fondo con blur detrÃ¡s del contenido */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1; /* ðŸ‘ˆ Esto deja el fondo detrÃ¡s del contenido */
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(25,29,36,0.08);
  transition: all 0.4s ease;
}

/* Cuando haces scroll: activa el blur y aumenta opacidad */
.navbar.scrolled::before {
  backdrop-filter: blur(12px) saturate(140%);
  background: rgba(255, 255, 255, 0.75);
}

/* Reduce el padding en scroll */
.navbar.scrolled {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Compensar espacio del menÃº fijo */
body {
  padding-top: 80px;
}




/* ðŸ”µ BOTONES */
.btn-azul {
  background-color: var(--color-blue);
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  padding: calc(var(--spacing)) calc(var(--spacing) * 2);
  transition: 0.3s ease;
}

.btn-azul:hover {
  background-color: var(--color-blue-light);
}

.btn-gradiente {
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light));
  color: white;
  padding: calc(var(--spacing) * 1.5) calc(var(--spacing) * 3);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-gradiente:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* ðŸŸ© HERO SECTION */
.hero {
  background-color: #fff;
  padding-top: calc(var(--spacing) * 10);
  padding-bottom: calc(var(--spacing) * 10);
}

.hero h1 span {
  color: var(--color-blue);
}

.hero-text {
  color: var(--color-gray);
  max-width: 640px;
}

/* Imagen debajo del botÃ³n */
.hero-img-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  position: absolute;
}
.bg-video{
  width: 100%;
  max-width: 341px;
}

/* âœ¨ Fade + Slide text animation */
.hero-typing {
  display: inline-block;
  position: relative;
  overflow: hidden;
  /*height: 1.2em;*/
}

.hero-typing-text {
  display: inline-block;
  color: var(--color-blue);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-typing-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 991px) {
  .bg-video{
  width: 100%;
  max-width: 330px;
  }
}
@media (max-width: 767px) {
  .bg-video{
  width: 100%;
  max-width: 45%;
  }
}

/* ðŸŸ£ ICONOS CIRCULARES */
.circles {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #9ed0ff, #0047ff);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 40px rgba(0, 98, 255, 0.3);
}

.social-circle {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Posiciones */
.social-circle.whatsapp { top: 0; left: 30%; transform: translate(-50%, -50%); }
.social-circle.instagram { top: 10%; right: 30%; transform: translate(50%, -50%); }
.social-circle.messenger { bottom: 10%; left: 30%; transform: translate(-50%, 50%); }
.social-circle.chat { bottom: 0; right: 30%; transform: translate(50%, 50%); }

/* ðŸŸ¨ EMPRESAS QUE CONFÃAN EN NOSOTROS */
.empresas {
  background-color: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.empresas h2 {
  color: var(--color-gray);
  letter-spacing: 1px;
}

/* Contenedor del slider */
.slider {
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* LÃ­nea de movimiento */
.slide-track {
  display: flex;
  width: calc(280px * 12);
  animation: scroll 35s linear infinite;
}

/* Caja individual del logo */
.slide {
  width: 200px;
  height: 100px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0 calc(var(--spacing) * 2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Imagen del logo */
.slide img {
  max-height: 50px;
  max-width: 120px;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* AnimaciÃ³n infinita */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ðŸŸ© PLATAFORMAS HORIZONTALES */
/* ðŸŸ© SOLUCIONES (antes Plataformas) */
.plataformas {
  background: #fff;
}

.soluciones-grid {
  margin-top: 16px;
}

.solucion-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);

  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solucion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Imagen / mockup */
.solucion-media {
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 163, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(6, 111, 249, 0.35),
      transparent 55%
    );
}

.solucion-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Textos */
.solucion-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.solucion-text {
  font-size: 14px;
  color: var(--color-gray);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .solucion-card {
    padding: 20px;
  }
}



/* ðŸŸ¦ CUSTOMER JOURNEY */
.customer-journey {
  background-color: #fff;
}

.customer-journey h2 span {
  color: var(--color-blue);
}

.text-primary { color: var(--color-blue) !important; }
.text-gray { color: var(--color-gray) !important; }

/* ðŸŸ¦ NUEVO CUSTOMER JOURNEY */
.journey-grid {
  margin-top: 16px;
}

.journey-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

/* Imagen */
.journey-media {
  width: 100%;
  overflow: hidden;
}

.journey-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Texto */
.journey-body {
  padding: 24px 24px 28px;
}

.journey-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 8px;
}

.journey-text {
  font-size: 14px;
  color: var(--color-gray);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-body {
    padding: 20px;
  }
}




/* ðŸŸ¦ RESULTADOS */
.resultados {
  
  transition: background 1s ease;
}

/* ðŸŸ¦ CANALES FAVORITOS (antes Resultados) */
.resultados.canales-favoritos {
  background-color: transparent !important;
}

.canales-fav-grid {
  gap: 32px;
}

.canal-fav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
}

/* Tarjeta / icono */
.canal-fav-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.canal-fav-icon i {
  font-size: 36px;
}

/* Etiqueta */
.canal-fav-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}

/* Gradientes por canal */
.canal-fav-icon--whatsapp {
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 211, 102, 0.25), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(16, 183, 89, 0.25), transparent 55%);
  color: #25D366;
}

.canal-fav-icon--facebook {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 163, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(6, 111, 249, 0.32), transparent 55%);
  color: #1877f2;
}

.canal-fav-icon--instagram {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 204, 128, 0.45), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255, 64, 129, 0.45), transparent 55%);
  color: #e1306c;
}

.canal-fav-icon--rcs {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 163, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0, 98, 255, 0.32), transparent 55%);
  color: var(--color-blue);
}

.canal-fav-icon--sms {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 200, 83, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0, 230, 118, 0.25), transparent 55%);
  color: #00c853;
}

/* Hover */
.canal-fav-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 768px) {
  .canales-fav-grid {
    gap: 20px;
  }

  .canal-fav-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  .canal-fav-icon i {
    font-size: 28px;
  }
}



/* ðŸ¤– AGENTES IA â€“ nuevo diseÃ±o */
.agentes-ia {
  position: relative;
  z-index: 1;
  background:transparent;
}

.agentes-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Columnas laterales */
.agentes-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 260px;
  max-width: 280px;
}

/* Tarjetas de caracterÃ­sticas */
.agent-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agent-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.agent-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0062ff, #00a3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.agent-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  margin: 0 0 4px;
}

.agent-feature-text {
  font-size: 13px;
  color: var(--color-gray);
  margin: 0;
}

/* Mockup del telÃ©fono */
.agentes-phone {
  flex: 0 1 360px;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 100%;
  max-width: 320px;
  height: 600px;
  background: #ffffff;
  border-radius: 36px;
  padding: 22px 18px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  border: 5px solid #1E1E1E;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header del telÃ©fono */
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-avatar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 249, 255, 0.96);
}

.phone-avatar-logo {
  width: 28px;
  height: 28px;
  
}

.phone-avatar-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
}

.phone-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #19d27c;
  box-shadow: 0 0 0 4px rgba(25, 210, 124, 0.25);
}

/* Cuerpo del telÃ©fono */
.phone-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.agent-orb {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 163, 255, 0.6), rgba(0, 20, 90, 0.9)),
    radial-gradient(circle at 80% 80%, rgba(255, 64, 129, 0.8), rgba(0, 163, 255, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.agent-orb-video {
  width: 194%;
  height: auto;
}

/* Texto principal dentro del telÃ©fono */
.phone-main-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
}

/* Input del telÃ©fono */
.phone-input {
  margin-top: auto;
}

.phone-input-box {
  border-radius: 999px;
  border: 1px solid #e1e6f0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9ff;
}

.phone-input-placeholder {
  font-size: 12px;
  color: #a0a6b8;
}

.phone-input-actions {
  display: flex;
  gap: 8px;
  color: #7b82a0;
  font-size: 16px;
}

/* âœ¨ Fade + Slide para texto del mockup */
.phone-rotate-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.phone-rotate-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Responsivo */

@media (max-width: 1200px) {
  .agentes-layout {
      gap: 20px;
  }
}


@media (max-width: 992px) {
  .agentes-layout {
    flex-direction: column;
  }

  .agentes-column {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .agent-feature {
    max-width: 260px;
  }

  .agentes-phone {
    order: -1; /* telÃ©fono primero en mobile */
  }
}

@media (max-width: 576px) {
      .phone-frame {
        max-width: 280px;
        height: 550px;
        padding: 20px 14px 16px;
    }
    .agent-feature {
    max-width: 100%;
  }

  .agent-orb {
    width: 160px;
    height: 160px;
  }
}





/* ðŸŸ¦ CANALES DE COMUNICACIÃ“N */
.canales {
  background-color: #fff;
}

.canal-card {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--spacing) * 2);
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: calc(var(--spacing) * 3);
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
}

.canal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 98, 255, 0.1);
  border-color: rgba(0, 98, 255, 0.3);
}

.canal-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.text-whatsapp {
  color: #25D366;
}

.text-blue {
  color: var(--color-blue);
}

/* ðŸ’« CTA FINAL: Impulsar Ventas */
.cta-ventas {
  position: relative;
  padding: calc(var(--spacing) * 16) 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 153, 255, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 132, 255, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(180deg, #9eccf6 0%, #f3faff 40%, #9eccf6 70%, #d0e9ff 100%);
  background-blend-mode: screen;
  color: var(--color-black);
}

/* ðŸª¶ Texto y estilos */
.badge-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--color-blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.15);
  margin-bottom: 24px;
}
.badge-cta-azul {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #B8E0FF;
  color: var(--color-blue-light);
  border-radius: 50px;
  border: 1px solid var(--color-blue-light);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.15);
  margin-bottom: 24px;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: var(--color-gray);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ðŸ’™ BotÃ³n de acciÃ³n */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light));
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 98, 255, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 98, 255, 0.35);
}

/* ðŸŒˆ AdaptaciÃ³n mÃ³vil */
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 16px;
  }
}






/* âšª FOOTER */
.footer {
  background: #fff;
  color: var(--color-black);
  font-family: 'Poppins', sans-serif;

}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: calc(var(--spacing) * 6);
  padding-bottom: calc(var(--spacing) * 8);
  border-bottom: 1px solid #e6e6e6;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.btn-footer {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light));
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.btn-footer:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.25);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--color-gray);
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-blue);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--color-gray);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-blue);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.meta-logos {
  display: flex;
  gap: 10px;
}

.meta-img {
  width: 100px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

/* âš« SecciÃ³n inferior */
.footer-bottom {
  padding: calc(var(--spacing) * 4) 0;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal p {
  font-size: 14px;
  color: var(--color-black-100);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--color-black-100);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-blue);
}

/* ðŸ“± AdaptaciÃ³n */
@media (max-width: 768px) {
  .footer-meta {
    justify-content: flex-start;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .slide-track {
    animation-duration: 45s;
  }

  .slide {
    width: 160px;
    height: 80px;
  }

  .slide img {
    max-height: 40px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .slide-track {
    animation-duration: 45s;
  }

  .slide img {
    max-height: 40px;
  }
}


/* ðŸ“± RESPONSIVE */
@media (max-width: 768px) {
  .fs-72 { font-size: 32px; line-height: 40px; }
  .main-orb { width: 140px; height: 140px; }
  .social-circle { width: 60px; height: 60px; }
  .hero-img { max-width: 100%; border-radius: 12px; }
}



/* ðŸŸ© PÃ¡gina SECCIÃ“N CONTACTO */

.contact-section {
  position: relative;
  padding: 46px 0px 90px;
  overflow: hidden;
  background:
    url("../img/fondo-form.png") no-repeat left center,
    #f5f9ff;
  background-size: cover;
}


.contact-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* Columna izquierda */
.contact-left {
  flex: 1 1 360px;
  max-width: 540px;
  color: var(--color-black);
}

.badge-cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--color-blue);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 98, 255, 0.15);
  margin-bottom: 24px;
}

.contact-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-text {
  font-size: 16px;
  color: var(--color-gray);
  max-width: 520px;
  margin-bottom: 32px;
}

/* BotÃ³n WhatsApp */
.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #00c853, #25d366);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 200, 83, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp-contact i {
  font-size: 20px;
}

.btn-whatsapp-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 200, 83, 0.45);
}

/* Columna derecha */
.contact-right {
  flex: 1 1 420px;
  display: flex;
  justify-content: flex-end;
}

.contact-card {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 32px 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.contact-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card-subtitle {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 24px;
}

/* Inputs */
.contact-form .contact-input {
  border-radius: 8px;
  border: 1px solid #e1e5f0;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #fdfdff;
  box-shadow: none;
  height: 40px;
}
.contact-form .contact-textarea{
  height: 60px !important;
}

.contact-form .contact-input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(6, 111, 249, 0.16);
}

.contact-textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 110px;
}

/* Ajustes de select */
.contact-form .form-select.contact-input {
  background-position: right 16px center;
}

/* Consentimiento */
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--color-gray);
}

.contact-consent .form-check-input {
  margin-top: 4px;
}

.contact-link {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* BotÃ³n enviar */
.btn-contact-submit {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light));
  box-shadow: 0 10px 26px rgba(0, 98, 255, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 98, 255, 0.35);
}

/* Responsive */
@media (max-width: 992px) {

  .contact-layout {
    flex-direction: column;
  }

  .contact-right {
    justify-content: center;
  }

  .contact-card {
    padding: 28px 20px 24px;
  }

  .contact-title {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-section::before {
    background-position: top left;
  }
  .btn-whatsapp-contact{
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* ðŸ”™ BotÃ³n volver a inicio (solo mobile dentro de contacto) */
.btn-back-mobile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(6, 111, 249, 0.2);
  background: #ffffff;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.10);
}

.btn-back-mobile i {
  font-size: 16px;
}

.btn-back-mobile:hover {
  text-decoration: none;
  background: #f3f8ff;
}



/* ðŸŽ¬ AnimaciÃ³n secciÃ³n gracias */

/* Cuando el layout entra en modo "is-leaving" desvanecemos texto + form */
.contact-section-thanks .contact-layout.is-leaving .contact-left,
.contact-section-thanks .contact-layout.is-leaving .contact-right {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estado normal (visible) para que el transition funcione bien */
.contact-section-thanks .contact-left,
.contact-section-thanks .contact-right {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Capa de agradecimiento (vidrio) */
.thankyou-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.thankyou-layer.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Tarjeta de vidrio */
.thankyou-card {
  max-width: 640px;
  width: 100%;
  padding: 40px 32px 36px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(26px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.thankyou-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.thankyou-title span {
  color: var(--color-blue-light);
}

.thankyou-text {
  font-size: 16px;
  color: var(--color-gray);
  max-width: 460px;
  margin: 0 auto 32px;
}

.thankyou-text span {
  color: var(--color-blue);
  font-weight: 500;
}

/* Icono de palomita */
.thankyou-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.thankyou-icon {
  width: 110px;
  height: 110px;
  border-radius: 32px;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 200, 83, 0.2),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 230, 118, 0.3),
      transparent 55%
    ),
    #f5fff9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 200, 83, 0.35);
}

.thankyou-icon i {
  font-size: 40px;
  color: #00c853;
}

/* BotÃ³n Ir al inicio */
.btn-thankyou {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light));
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 98, 255, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-thankyou:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 98, 255, 0.35);
}

/* Responsive */
@media (max-width: 576px) {
  .thankyou-card {
    margin: 0 12px;
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .thankyou-title {
    font-size: 32px;
  }
}

/* ðŸ”§ Ajuste para que la secciÃ³n THANK YOU ocupe pantalla completa */
.contact-section-thanks .contact-layout.is-leaving {
  height: calc(100vh - 100px);                 /* ocupa la pantalla */
  display: flex;                 /* centrado vertical */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;            /* mantiene capa de vidrio */
  transition: height 0.4s ease;  /* animaciÃ³n suave */
}

/* Ocultar el espacio real de columnas al desaparecer */
.contact-section-thanks .contact-left.is-hidden,
.contact-section-thanks .contact-right.is-hidden {
  display: none !important;
}
