body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    min-width: 100vw;
    color: white;
    overflow-x: hidden;
    background: url('Assets/fondoAlto.webp');
    background-size: cover;  
    background-position: center center; 
    background-repeat: no-repeat;
    margin: 0; 
    box-sizing: border-box;
  }

  html, body{
    -webkit-text-size-adjust: 100%;
  }

  html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;               
}
  .raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight:200;
  font-style: normal;
}


.titulo{
  font-size: large;
}

/* Contenedor animado */
.pulse-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  /* Botón de WhatsApp */
  .pulse-whatsapp .btn-floating {
    animation: pulse 2s infinite;
    position: relative;
  }
  /* Efecto de onda */
  .pulse-whatsapp::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4); 
    animation: ripple 2s infinite;
    z-index: -1;
  }
  
  /* Palpitación */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  /* Ondas expansivas */
  @keyframes ripple {
    0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0.8;
    }
    70% {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }

.navbar-fixed .nav-wrapper {
  width: 100%;
  padding: 0 20px;           
  height: 100px;              
  background-color: #29466D !important; 
  border-radius: 16px;  
  display: inline-block !important;
}

nav{
  background-color: #29466D !important; 
}

.nav-title{
margin-left: 4% !important;
font-size: 37px !important;
}

.nav-wrapper .brand-logo img {
  height: 65px;         
  margin-top: 25px;       
}

  .main-header {
    font-size: 1rem;
    margin-top: 2%;
 
  }
  
.zoomable-image {
  width: 80%;                
  display: block;
  border-radius: 16px;
}

  .info-row {
    display:inline-flex;
    justify-content: center !important;
    width: 100%;
  }

.play-button {
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.contenedor-video {
  position: relative;
  display: flex;
  justify-content: center;
  width: 96%;
  margin: 0 auto;
  margin-top: 8%;

}

.material-symbols-outlined {
  font-size: 45px !important;
  font-variation-settings:
  'FILL' 1,
  'wght' 500,
  'GRAD' 0,
  'opsz' 24
}



.play-button.active {
  background-color: #eeeeee; 
  opacity: 0.5;
}

button.active {
  display: block;
}

button.inactive {
  display: none;
}

  
  .info-box {
    text-align: center;
    margin: 80px;
    margin-bottom: 0%;
    font-weight: 300;
  }
  
  .info-box i {
    font-size: 3rem;
    margin-top: 20px;
  }

  .todoEsto{
    display: block;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
  }
  
  .price-text {
    font-size: 3rem;
  }

  .incluye-text{
    font-size: 1.2rem;
  }

  .iconos-texto{
    font-size: 1rem;
  }

  .cta-text {
    font-size: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  

  .double-underline {
    text-decoration: underline;
    text-decoration-color: #D89B6C;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    position: relative;
  }
  
  .double-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #D89B6C;
  }

    .check-list i {
  color: #D89B6C;
}

.check-list{
  display: block;
  text-align: left;
  margin-left: 8%;
}

.snap-container{
  scroll-snap-type: y mandatory;
}


.fullView {
  scroll-snap-align: center;  
  display: flex;
  justify-content: center;   
  align-items: center;      
  height: 100vh;            
  width: 100vw;              
  box-sizing: border-box; 
  overflow: visible !important;  
  margin-bottom: 2% ;
}

.por-que{
  font-size: 1.2rem;
  text-align: justify;
}

.por-que-row{
  width: 50%;
  
}

.row-icons{
  margin-top: 8%;
}

blockquote {
  border-left: 4px solid #D89B6C;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* Solo en el primer fullView */
#sec1 {
  position: relative; /* Para posicionar el indicador */
}

/* Contenedor del indicador */
.scroll-indicator {
  position: absolute;
  display: flex;
  bottom: 5rem;
  left: 4rem;
  flex-direction: column;
  opacity: 0.6;
  justify-items: left;
  pointer-events: none; /* No interfiere con clicks */
  animation: fade-in-out 3s ease-in-out infinite;
}

/* Icono de dedo o flecha */
.scroll-indicator .finger {
  font-size: 2rem;
  animation: bounce 1.5s ease-in-out infinite;
}

/* Texto debajo del ícono */
.scroll-indicator .text {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Animación de “rebote” para el dedo */
@keyframes bounce {
  0%, 100%   { transform: translateY(0); }
  50%        { transform: translateY(8px); }
}

/* Animación de aparición/desaparición */
@keyframes fade-in-out {
  0%, 100%   { opacity: 0.0; }
  10%, 90%   { opacity: 0.6; }
}

#sec1 {
   display: flex;
  flex-direction: column;
}


@keyframes parpadeo {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.cta-text {
  animation: parpadeo 1s infinite;
}
/* responsive.css: ajustes para tablet y móvil, ocultar lema en navbar y mostrar en main */

/* Ocultar versión móvil del lema dentro del main por defecto */
.main-header-mobile {
  display: none;
}

/* Tablet: hasta 768px */
@media screen and (max-width: 768px) {
  .scroll-indicator {
  justify-items: center !important;
}

  /* Navbar: ocultar el lema original en la barra */
  .nav-wrapper .main-header.right {
    display: none !important;
  }

   /* Mostrar lema dentro del main, encima del video */
 .main-header-mobile {
    display: block !important;
    font-size: 20px !important;
    text-align: center !important;
    margin: calc(1rem + 56px) auto 2rem auto !important; 
    line-height: 1.3 !important;
    position: relative !important;
    z-index: 1 !important;
  }
  /* Navbar: logo + título en fila */
  .nav-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
    height: auto !important;
  }
  /* Logo ajustado */
  .nav-wrapper .brand-logo img {
    max-height: 36px !important;
    width: auto !important;
  }
  /* Título junto al logo */
  .nav-wrapper .nav-content {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    margin-left: 2rem !important;
  }
  .nav-wrapper .nav-title {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Botón de play proporcional */
  .play-button {
    display: none !important; 
    width: 48px !important;
    height: 48px !important;
  }

  /* Secciones fullView en columna */
  .fullView {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh;
    padding: 0 !important;
    margin-bottom: 8rem !important;
  }

  /* Vídeo full ancho */
  .video-container {
    width: 80% !important;
    margin-top: 0 !important;
  }
  .zoomable-image,
  .responsive-video {
    width: 100% !important;
    height: auto !important;
  }

  /* Ajuste de textos e info-boxes */
  .info-row,
  .info-box,
  .por-que-row,
  .todoEsto,
  .check-list {
    width: 90% !important;
    margin: 1rem auto !important;
  }
  .info-box,
  .check-list {
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Tamaños de fuente */
  .flow-text,
  .por-que {
    font-size: 16px !important;
  }
  .price-text {
    font-size: 28px !important;
  }
  .incluye-text,
  .iconos-texto {
    font-size: 14px !important;
  }
  .cta-text {
    font-size: 20px !important;
    padding: 1rem !important;
  }
    .row-icons {
    display: block !important;
    justify-content: center !important;  
    margin: 0 auto !important;
    padding: 0 1rem !important;          
  }
}

/* Móvil: hasta 480px */
@media screen and (max-width: 480px) {
.scroll-indicator {
  justify-items: center !important;
}

.scroll-indicator {
  left: 3rem;
}

  /* Navbar: ocultar lema original */
  .nav-wrapper .main-header.right {
    display: none !important;
  }

  /* Mostrar lema dentro del main */
 .main-header-mobile {
    display: block !important;
    font-size: 15px !important;
    text-align: center !important;
    margin: calc(0.8rem + 56px) auto 1.5rem auto !important;
    margin-top: 17% !important;
    margin-bottom: -15% !important;
    width: 90% !important;
    line-height: 1.3 !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .nav-wrapper {
    padding: 0.4rem 0.8rem !important;
  }
  .nav-wrapper .brand-logo img {
    max-height: 32px !important;
  }
  .nav-wrapper .nav-content {
    flex: 1 1 auto !important;
  }
  .nav-wrapper .nav-title {
    font-size: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Botón de play más pequeño */
  .play-button {
    display: none !important;
    width: 40px !important;
    height: 40px !important;
  }
  
   .fullView {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh;
    padding: 0 !important;
    margin-top: 0;
  }
  .flow-text,
  .por-que,
  .incluye-text,
  .iconos-texto {
    font-size: 14px !important;
  }
  .price-text {
    font-size: 24px !important;
  }
  .cta-text {
    font-size: 18px !important;
  }
}






