
        :root {
            --primary: #009c8c;
            --white: #ffffff;
            --black: #000000;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--black);
            line-height: 1.6;
        }
        
        section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }

        .flex {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        a
{
	display:block;
	text-decoration:none;
	color:inherit;
	font-size:inherit
}




/***** CONTENEDOR PRINCIPAL DEL HERO PRUEBAS *****/
/***** SECCIÓN HERO *****/
.hero-section {
    min-height: 100vh;   /* Ocupa toda la ventana */
    display: flex;
    flex-wrap: wrap; /* Para adaptar en móvil */
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    padding: 2rem;
  }
  
  /* TEXTO DEL HERO */
  .hero-text {
    flex: 1 1 400px;
    max-width: 600px;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--color-primario);
  }
  
  .hero-text h1 span {
    color: var(--color-secundario);
  }

  .hero-text h2{
  font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--color-primario);
    color: var(--color-fondo);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #007a6f; /* Un tono más oscuro */
  }
  
  /* CONTENEDOR DE IMÁGENES */
  .hero-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex: 1 1 300px;
  }
  
  /* CLASE GENÉRICA PARA ÓVALOS */
  .image-oval {
    position: relative;
    width: 300px; /* Ajusta según tus necesidades */
    height: 400px; /* Ajusta según tus necesidades */
    /* Clip-path para generar forma ovalada */
    clip-path: ellipse(50% 50% at 50% 50%);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  /* Animación al pasar el ratón */
  .image-oval:hover {
    transform: scale(1.05);
  }
  
  /* Imagen interna */
  .image-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Tamaños diferentes de óvalos */
  .oval-large {
    width: 260px;
    height: 360px;
  }
  .oval-medium {
    width: 200px;
    height: 280px;
  }
  .oval-small {
    width: 140px;
    height: 200px;
  }
  .mobile-cta {
    display: none;
    
}

.mobile-cta1 {
  display: none;
  
}


  
  /* RESPONSIVE (Ejemplo para pantallas pequeñas) */
  @media (max-width: 600px) {
    /* CLASE GENÉRICA PARA ÓVALOS */
    
  .hero-text h2{
    font-size: 1.5rem;
    }
    .mobile-cta {
      display: block !important;
      text-align: center;
      margin: 20px 0;
      margin-top: 0px;
       
  }
  /* Ajusta el margen superior para posicionamiento */
  .mobile-cta img {
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 100%; max-width: 600px; height: 200px; border-radius: 10px;
  }

  .mobile-cta1 {
    display: block !important;
    text-align: center;
    margin: 20px 0;
 
     
}
/* Ajusta el margen superior para posicionamiento */
.mobile-cta1 img {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%; max-width: 600px; height: auto; border-radius: 10px;
}


    .hero-text h1 {
      font-size: 2em;
    }
    
    .hero-section {
      flex-direction: column;
    }
    .hero-images {
      flex-direction: row;
      margin-top: -90px;
    }
    .oval-large {
      width: 100%;


    }
    .oval-medium {
      width: 160px;
      height: 220px;
    }
    .oval-small {
      width: 100px;
      height: 150px;
    }
   
  }


  /*  ------ MEDIA QUERIES ------  */
  
  /* Versión móvil: max-width 767px (o ajusta según tu preferencia) */
  @media (max-width: 767px) {
    /* Solo vemos 3 tarjetas, las demás se ocultan */
    .hidden-mobile {
      display: none !important;
    }
    
  }

.mtop-20
{
	margin-top:-20px!important
}

.mtop-30
{
	margin-top:-30px!important
}

.mtop-40
{
	margin-top:-40px!important
}


/* Estado inicial: oculto y desplazado hacia abajo */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  /* Estado visible: opacidad 1 y posición normal */
  .animate-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .responsive-image {
        object-fit: contain; /* Evita recortes */
        max-height: 250px; /* Ajusta según el diseño */
        position: relative;
        top: -25px; /* Ajusta según necesites */
    }
}

.btn {
   background-color: var(--primary);
   color: var(--white);
   padding:18px 30px;
   border-radius:15px;
   font-size:1.2rem;
   font-weight:700;
   cursor: pointer;
   transition: background-color 0.3s;
   max-width: 100%;
   overflow: hidden;
   width: fit-content;
   margin: auto;
}

@media (max-width: 768px) {
   .btn {
       padding: 1rem 2rem;
       white-space: nowrap;
       font-size: .9rem;
       margin-left: auto;
    
   }
}
        .btn:hover {
            background-color: #008075;
        }

        .container1 {
            display: flex;
            justify-content: center; /* Centra horizontalmente */
            align-items: center; /* Centra verticalmente (opcional) */
          }

        .btn1 {
background-color: var(--primary);
  color: var(--white);
  padding: 18px 30px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  cursor: pointer;
  word-break: keep-all;
            
         }
         
         @media (max-width: 768px) {
            .btn1 {
                padding: 1rem 2rem;
                white-space: nowrap;
                font-size: .9rem;
             
            }
         }
                 .btn1:hover {
                     background-color: #008075;
                 }

       

        /* Hero Section */
        .hero {
            background-color: var(--white);
            text-align: left;
            padding: 6rem 1rem;
        }

        .hero-content {
            flex: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--black);
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #4a4a4a;
        }

        .hero img {
            max-width: 500px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .flex {
                flex-direction: column;
            }

            .hero {
                padding: 3rem 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                text-align: center;
            }

            .hero .subtitle {
                text-align: center;
            }

            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero img {
                max-width: 100%;
                margin-top: 2rem;
            }

            h2 {
                font-size: 2rem;
            }
       
        }
       
    /* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex; /* Usamos Flexbox para alinear el texto y la imagen */
    align-items: center; /* Alinea verticalmente el contenido */
    padding: 4rem 2rem; /* Espaciado interno */
  }
  
  .about-content {
    flex: 1; /* El texto ocupa el 50% del espacio disponible */
    padding-right: 2rem; /* Espacio entre el texto y la imagen */
  }
  
  .about-image {
    flex: 1; /* La imagen ocupa el 50% del espacio disponible */
    text-align: right; /* Alinea la imagen a la derecha */
  }
  
  .about-image img {
    max-width: 100%; /* Hace que la imagen sea responsive */
    height: auto; /* Mantiene la proporción de aspecto */
    border-radius: 15px; /* Opcional: bordes redondeados para la imagen */
  }
  
  .about-content h2 {
    text-align: left;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
  }
  
  .destacado {
    font-size: 1.5rem;
    color: var(--primary);
    font-style: italic;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
  }
  
  .about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .about-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
  }
  
  .about-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about {
      flex-direction: column; /* Apila el texto y la imagen en pantallas pequeñas */
      text-align: center; /* Centra todo el contenido */
    }
  
    .about-content {
      padding-right: 0; /* Elimina el espacio adicional */
      margin-bottom: 2rem; /* Espacio entre el texto y la imagen */
    }
  
    .about-image {
      text-align: center; /* Centra la imagen */
    }
  
    .about-content h2 {
      font-size: 2rem;
      text-align: center;
    }
  
    .destacado {
      text-align: center;
      border-left: none;
      border-bottom: 2px solid var(--primary);
      padding: 0 0 1rem 0;
      margin: 1rem 0 2rem;
    }
  
    .about-list li {
      font-size: 1rem;
    }
  }
    .benefits-section {
        background-color: #f8f9fa;
        padding: 5rem 1rem;
    }

    .benefits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .benefit-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        background-color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .benefit-icon svg {
        width: 35px;
        height: 35px;
        fill: var(--white);
    }

    .benefit-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--black);
        text-align: center;
    }

    .benefit-card p {
        color: #4a4a4a;
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: center;
    }

    @media (max-width: 768px) {
        .benefits {
            grid-template-columns: 1fr;
        }
        
        .benefit-card {
            max-width: 400px;
            margin: 0 auto;
        }
    }
    
        /* Process Steps */
        .process{
            background-color: #f8f9fa;
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        

        @media (max-width: 768px) {
            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        .step {
            text-align: center;
            position: relative;
            padding: 2rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .step h3 {
            margin-bottom: 1rem;
          
        }

        .step-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: bold;
        }

  
  .highlight {
    background-image: linear-gradient(120deg, #c3e7e5 0%, #c3e7e5 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    font-weight: 700;
}

 
.highlight-amarillo {
    background-image: linear-gradient(120deg, #ffe333 0%, #ffe333 100%);
    background-repeat: no-repeat;
    background-size: 100% 50%;
    background-position: 0 90%;
    font-weight: 700;
}

  .highlight-marker {
    background-image: linear-gradient(120deg, #c3e7e5 0%, #c3e7e5 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    font-weight: 700;
}

.highlight-marker-rojo {
    background-image: linear-gradient(120deg, #ffffff 0%, #ff9633 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    font-weight: 700;
}
  
.social-proof {
    background: rgba(0,156,140,0.03);
    padding: 4rem 0;
    margin-top: 4rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

       
        .boton-tiktok
        {
            width:85px;
            height:85px;
            bottom:15px;
            right:16px;
            color:transparent;
            background-color:var(--c-turquesa);
            border-radius:50px;
            text-align:center;
            font-size:30px;
            background-image:url(https://jpsicologo.com/assets/tiktok.webp);
            background-repeat:no-repeat;
            background-size:48px 48px;
            background-position:center;
            cursor:pointer
        }
        
        .boton-tiktok:hover
        {
            background-size:38px 38px
        }
        
        .boton-linkedin
        {
            width:85px;
            height:85px;
            bottom:15px;
            right:16px;
            background-color:var(--c-turquesa);
            color:transparent;
            border-radius:50px;
            text-align:center;
            font-size:30px;
            background-image:url(https://jpsicologo.com/assets/linkedin.webp);
            background-repeat:no-repeat;
            background-size:60px 60px;
            background-position:center;
            cursor:pointer
        }
        
        .boton-linkedin:hover
        {
            background-size:50px 50px
        }
        
        .boton-instagram
        {
            width:85px;
            height:85px;
            bottom:15px;
            right:16px;
            background-color:var(--c-turquesa);
            color:transparent;
            border-radius:50px;
            text-align:center;
            font-size:30px;
            background-image:url(https://jpsicologo.com/assets/instagram.webp);
            background-repeat:no-repeat;
            background-size:60px 60px;
            background-position:center;
            cursor:pointer
        }
        
        .boton-instagram:hover
        {
            background-size:50px 50px
        }
        
        .boton-youtube
        {
            width:85px;
            height:85px;
            bottom:15px;
            right:16px;
            background-color:var(--c-turquesa);
            color:transparent;
            border-radius:50px;
            text-align:center;
            font-size:30px;
            background-image:url(https://jpsicologo.com/assets/youtube.webp);
            background-repeat:no-repeat;
            background-size:65px 60px;
            background-position:center;
            cursor:pointer
        }
        
        .boton-youtube:hover
        {
            background-size:55px 50px
        }
        
        .backcolblack
{
	background-color:#000;
	border-radius:15px;
	padding:5px auto
}

.tcenter
{
	text-align:center!important
}

.footer__subscribe-boton
{
	background-color:#FFD700;
	color:#fff;
	padding:10px 20px;
	border:none;
	border-radius:4px;
	cursor:pointer;
	text-align:center;
	font-size:1.2rem;
	margin:10px auto
}

.footer__subscribe-boton a
{
	color:#fff;
	text-decoration:none
}

.footer__subscribe-boton:hover
{
	background-color:#000000;
	transform:translateY(-3px)
}     
        @media only screen and (max-width:800px) {
            
            
            .boton-tiktok
            {
                width:75px;
                height:75px;
                bottom:15px;
                right:16px;
                font-size:10px;
                background-size:40px 40px
            }
            
            .boton-linkedin
            {
                width:70px;
                height:70px;
                bottom:15px;
                right:16px;
                font-size:10px;
                background-size:53px 48px
            }
            
            .boton-instagram
            {
                width:65px;
                height:65px;
                bottom:15px;
                right:16px;
                font-size:10px;
                background-size:50px 45px
            }
            
            .boton-youtube
            {
                width:65px;
                height:65px;
                bottom:15px;
                right:16px;
                font-size:10px;
                background-size:53px 50px
            }
        }

#whatsappSticky{display:none;position:fixed;bottom:1.5rem;right:1rem;z-index:9999}
#whatsappSticky a{display:flex;align-items:center;background-color:#25d366;color:#fff;padding:.6rem 1rem;border-radius:2rem;text-decoration:none;box-shadow:0 4px 8px rgba(0,0,0,.15);transition:background-color .3s ease;font-family:sans-serif;font-weight:500}
.whatsapp-icon{width:24px;height:24px;margin-right:.5rem}
#whatsappSticky a:hover{background-color:#20b558}
@media screen and (min-width:992px) {
#whatsappSticky a{padding:.8rem 1.2rem;font-size:1rem}
.whatsapp-icon{width:28px;height:28px}
}


.button-container
{
	display:flex;
	justify-content:center;
	margin-top:20px;
	width:100%
}



.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #bdc3c7;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #2c3e50;
}

.timeline-content p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::after {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }

  .timeline-content {
    width: 90%;
    margin: 0 auto 30px;
  }

  .timeline-item img {
    margin: 0 auto 20px;
  }
}

/* ESTILOS PARA LA SECCIÓN DE BONOS */
.bonus-section {
  background-color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bonus-content {
  flex: 1;
  text-align: left;
  padding-right: 2rem;
}

.bonus-content h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.gratis-badge {
  background: #ffd700;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  margin-left: 1rem;
}

.bonus-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

/* Grid de Bonos */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.bonus-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
}

.bonus-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.bonus-card p {
  color: #4a4a4a;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Botón CTA */
.btn-bonus {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  margin-top: 1rem;
}

.btn-bonus:hover {
  background: #007a6f;
  transform: scale(1.05);
}

/* Imagen */
.bonus-image img {
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.margin-auto{
  margin:0 auto;
  margin-left: auto;
  align-items: center;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
 
  .bonus-section {
      padding: 2rem 1rem;
  
  }
  
  .bonus-container {
      flex-direction: column;
 
  }
  
  .bonus-content {
      padding-right: 0;
      margin-bottom: 2rem;
  }
  
  .bonus-image {
      display: none;
  }
  
  .bonus-grid {
      grid-template-columns: 1fr;
  }
  
  .btn-bonus {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
  }
}