/* Importación de fuentes */
@import url('https://fonts.cdnfonts.com/css/avenir-lt-pro');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Variables globales */
:root {
    --primary-color: #BB0811; /* Color base (se mantiene) */
    --button-color: #3d7ac3; /* Naranja suave tipo coral */
    --button-hover: #8e381e; /* Naranja más intenso al pasar el mouse */
    --background-color: #000000; /* Fondo negro */
    --text-color: #FFFFFF; /* Texto blanco */

    --font-primary: 'Avenir LT Pro', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: #FFFFFF; /* El resto del sitio será blanco */
    color: var(--text-color);
}

a{
    text-decoration: none;
}

.iapower{
    color: #33b199;
}

/* Estilo de la sección principal */
.hero {
    background-color: var(--background-color);
    text-align: center;
    padding: 80px 20px; /* Respetamos los espacios arriba y abajo */
}

.hero h1 {
    font-size: 100px; /* Título más grande */
    font-family: var(--font-primary);
    font-weight: 300; /* Más delgado */
    margin-bottom: 30px;
}

.hero .subtitulo {
    font-size: 28px;
    font-family: var(--font-secondary);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.4;
}

.hero .detalle {
    font-size: 18px;
    font-family: var(--font-secondary);
    margin-bottom: 40px;
}

/* Botón principal */
.btn-hero {
    background-image: linear-gradient(to right, #3d7ac3, #33b199);
    color: var(--text-color);
    padding: 20px 50px;
    border: none;
    border-radius: 5px;
    font-size: 28px;
    cursor: pointer;
    transition: background-image 0.3s ease;
}



/* Agregado para animación */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}


/* Responsividad */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 50px;
    }

    .hero .subtitulo {
        font-size: 22px;
    }

    .hero .detalle {
        font-size: 16px;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 20px;
    }
}

/* Estilo del contador */
.contador {
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.puntos{
    color: var(--button-color);
}

.contador p {
    margin: 0;
    font-size: 22px;
    font-weight: 300;
    color: var(--button-color);
}

#countdown {
    font-size: 28px;
    margin-top: 5px;
    font-weight: 300;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .contador {
        padding: 8px 16px;
    }

    #countdown {
        font-size: 20px;
    }
}


/* Segunda Sección */
.section-benefits {
    background-color: #FFFFFF;
    color: #000000;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: var(--font-secondary);
}

.section-benefits h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300; /* Más delgado */
}

.section-benefits h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.section-benefits p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.section-benefits ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.section-benefits ul li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.benefits-images {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.benefits-images img {
    width: 220px;
    height: 280px; /* Hacemos las imágenes más altas */
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.benefits-images img:hover {
    transform: scale(1.05);
}

/* Responsividad */
@media (max-width: 768px) {
    .section-benefits h2 {
        font-size: 28px;
    }

    .section-benefits h3 {
        font-size: 20px;
    }

    .section-benefits p,
    .section-benefits ul li {
        font-size: 16px;
    }

    .benefits-images img {
        width: 150px;
        height: 200px;
    }

    .section-benefits {
    padding: 40px 20px;
}
}

/* Tercera Sección Actualizada */
.section-description {
    background-color: var(--background-color);
    color: var(--text-color);
    max-width: 1100px; /* Más ancho en pantallas grandes */
    margin: 80px auto;
    padding: 80px 60px; /* Más espacio lateral */
    border-radius: 12px;
    text-align: left;
}

.section-description h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 300; /* Más delgado */
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.section-description p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: var(--font-secondary);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: var(--font-secondary);
}

.features-list i {
    font-size: 28px;
    color: var(--button-color);
    margin-right: 15px;
}

/* Centramos el botón */
.button-container {
    text-align: center;
}

/* Responsividad */
@media (max-width: 768px) {
    .section-description {
        padding: 40px 20px;
    }

    .section-description h2 {
        font-size: 28px;
    }

    .section-description p,
    .features-list li {
        font-size: 16px;
    }

    .features-list i {
        font-size: 24px;
        margin-right: 10px;
    }
}

/* Sección: ¿Por qué ahora? */
.section-why {
    background-color: #f8f8f8; /* Fondo claro */
    color: #1a1a1a; /* Texto oscuro */
    padding: 80px 20px;
    font-family: var(--font-secondary);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a; /* Título oscuro */
}

.why-text p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #1a1a1a; /* Texto oscuro */
}

.why-text blockquote {
    margin: 20px 0;
    font-style: italic;
    color: #555; /* Gris tenue para las frases */
}

.why-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas para todas las pantallas */
    gap: 20px;
}

.why-images img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    height: 320px; /* Imágenes alargadas en pantallas grandes */
    transition: transform 0.3s ease;
}

.why-images img:hover {
    transform: scale(1.05);
}

/* Responsividad para tablets */
@media (max-width: 1024px) {
    .why-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .why-text h2 {
        text-align: center;
        font-size: 30px;
    }

    .why-images {
        grid-template-columns: 1fr 1fr; /* Mantiene dos columnas en tablet */
    }

    .why-images img {
        height: 250px; /* Altura en tablet */
    }
}

/* Responsividad para celulares */
@media (max-width: 600px) {
    .why-images {
        grid-template-columns: 1fr 1fr; /* Dos columnas para que no se hagan tan pequeñas */
        gap: 15px; /* Menos espacio para aprovechar mejor el ancho */
    }

    .why-images img {
        height: 280px; /* Imágenes más alargadas en celular */
    }

    .section-why {
    padding: 40px 20px;
}
}

/* Sección: ¿Cómo IA POWER va a transformar tu trabajo? */
.section-transform {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    font-family: var(--font-secondary);
}

.transform-content {
    max-width: 1200px;
    margin: 0 auto;
}

.transform-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

.transform-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.transform-benefits {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-item i {
    font-size: 36px;
    color: var(--button-color);
    min-width: 40px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.transform-footer {
    margin-top: 40px;
    font-size: 18px;
    text-align: center;
}

.button-container {
    margin-top: 40px;
    text-align: center;
}


/* Responsividad */
@media (max-width: 768px) {
    .benefit-item i {
        font-size: 30px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .transform-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .benefit-item {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item i {
        font-size: 28px;
    }
}

/* Sección: ¿Qué incluye IA POWER? */
.section-includes {
    background-color: #f5f5f5;
    padding: 80px 20px;
    font-family: var(--font-secondary);
    color: #000;
}

.includes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.includes-image img {
    width: 100%;
    max-width: 800px; /* Aumenté el tamaño de la imagen */
    border-radius: 12px; /* Puedes dejarlo si quieres bordes redondeados */
    /* box-shadow eliminado */
}

.includes-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
}

.includes-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.includes-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.includes-content ul li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 992px) {

    .section-includes {
    padding: 40px 20px;
}
    .includes-container {
        flex-direction: column;
    }

    .includes-content h2 {
        font-size: 30px;
    }

    .includes-content ul {
        padding-left: 1rem;
    }

    .includes-image img {
        max-width: 95%; /* Más grande en móvil */
    }
}

/* Sección: ¿Qué aprenderás en IA Power? */
.section-learn {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    font-family: var(--font-secondary);
}

.learn-container {
    max-width: 1200px;
    margin: 0 auto;
}

.learn-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

.learn-container p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.modules {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.module-number {
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.module-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.module-content h4 {
    font-size: 18px;
    margin: 10px 0;
}

.module-content ul {
    list-style: disc;
    margin-left: 20px;
}

.learn-button {
    text-align: center;
    margin-top: 40px;
}

.main-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main-button:hover {
    background-color: #a3561a;
}

/* Responsivo */
@media (max-width: 768px) {
    .module-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Sección */
.section-tools {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    font-family: var(--font-secondary);
}

.tools-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tools-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tools-container p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.slider {
    overflow: hidden;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    width: calc(250px * 44); /* 22 logos * 2 para loop */
    animation: scroll 40s linear infinite;
}

.slider-track img {
    height: 80px; /* Misma altura para todos los logos */
    width: auto;
    margin: 0 20px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .tools-container h2 {
        font-size: 32px;
    }

    .tools-container p {
        font-size: 16px;
    }

    .slider-track img {
        height: 60px;
        margin: 0 15px;
    }

    .slider-track {
        animation: scroll 30s linear infinite;
    }
}

.bonos-section {
    font-family: 'Poppins', sans-serif;
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    color: #1a1a1a;
}

.elite{
    border: solid 20px #edac21;
}

.bonos-section h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 3rem;
    margin-bottom: 60px;
}

.bono {
    background-color: var(--background-color);
    color: white;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
}

.bono-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bono-image {
    width: 350px;
    height: auto;
    border-radius: 8px;
}

.tachado-azul {
    text-decoration: line-through;
    text-decoration-color: red; /* azul personalizado */
}


.bono h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: var(--button-color);
}

.bono h4 {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
}

.bono p {
    font-weight: bold;
    margin-bottom: 10px;
}

.bono ul {
    padding-left: 20px;
}

.bono ul li {
    margin-bottom: 8px;
}

.bono-total {
    text-align: center;
    margin-top: 60px;
}

.bono-total p {
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.boton-bonos {
    background-color: #c08552;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.boton-bonos:hover {
    background-color: #a56d40;
}

.bono-alerta {
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
    padding: 8px 10px;
    text-align: center;
    margin-top: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-certificacion {
    text-align: center;
    margin: 25px 0;
}

.logo-certificacion img {
    max-width: 180px;
    height: auto;
}

.logo-certificacion {
    text-align: center;
    margin: 10px 0;
}

.logo-certificacion img {
    max-width: 180px;
    height: auto;
}

@media (min-width: 768px) {
    .logo-certificacion img {
        max-width: 200px;
    }
}


@media (min-width: 768px) {
    .logo-certificacion img {
        max-width: 200px;
    }
}


.alerta-icono {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .bono-content {
        flex-direction: column;
        text-align: left;
    }

    .bono-image {
        width: 280px;
    }

    .bonos-section {
        padding: 50px 20px;
    }

    .bonos-section h2 {
        font-size: 1.9rem;
        line-height: 2.5rem;
    }

    .bono-alerta {
        font-size: 1.5rem;
    }

    .bono h3 {
    font-size: 1.4rem;
    line-height: 2.1rem;
}
    .bono h4 {
    font-size: 2rem;
    line-height: 2.3rem;
}

.elite{
    border: solid 10px #edac21;
}
}

@media (min-width: 769px) {
    .bono-content {
        flex-direction: row-reverse;
    }

    .bono-content > div {
        text-align: left;
    }
}


/* Sección Garantía */
.garantia {
    background-color: var(--background-color);
    color: white;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.garantia-container {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Responsivo */
}

.garantia-imagen img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.garantia-texto h2 {
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 300;
}

.garantia-texto p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.garantia-texto p strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .garantia-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .garantia-texto h2 {
        font-size: 32px;
    }

    .garantia-texto p {
        font-size: 16px;
    }
}

/* Sección Inscripción Mejorada */
.inscripcion {
    background-color: white;
    color: #111;
    padding: 120px 20px;
    font-family: 'Poppins', sans-serif;
}

.inscripcion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.inscripcion h2 {
    font-size: 55px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2;
}

.inscripcion h2 span {
    color: var(--button-color); /* Color destacado solo para la primera línea */
}

.inscripcion p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.subtitulo {
    font-weight: 700;
    font-size: 24px;
    padding-left: 12px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.inscripcion-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.inscripcion-lista li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.inscripcion-lista li:hover {
    transform: translateX(5px);
}

.punto {
    width: 7px;
    height: 7px;
    background-color: #111;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.check {
    font-size: 20px;
    color: var(--background-color); /* O el color que prefieras para el ícono */
    flex-shrink: 0;
    margin-top: 2px;
}

.check::before {
    content: "✔️";
    display: inline-block;
}


.caja-precio {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.caja-precio strong {
    font-weight: 700;
    color: var(--button-color);
}

@media (max-width: 768px) {
    .inscripcion h2 {
        font-size: 36px;
    }

    .inscripcion p, .inscripcion-lista li {
        font-size: 16px;
    }

    .subtitulo {
        font-size: 18px;
    }

    .caja-precio {
        padding: 15px 20px;
    }
}

.cta-inscripcion {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.cta-inscripcion h2 {
    font-size: 4.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-inscripcion h2 span {
    color: #3d7ac3;
}

.cta-inscripcion .sub {
    font-size: 2.5rem;
    font-weight: 600;
}

.cta-inscripcion .destacado {
    color: #3d7ac3;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-botones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.boton-compra {
    background-image: linear-gradient(to right, #3d7ac3, #33b199);
    color: white;
    display: inline-block;
    padding: 24px 48px;
    line-height: 3.3rem;
    font-size: 3rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 #3d7ac3;
    animation: pulse 1.5s infinite;
}

.boton-compra:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #3d7ac3;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link i {
    font-size: 1.5rem;
}

.whatsapp-link:hover {
    color: #1ebe5d;
}

@media (max-width: 768px) {
    .cta-inscripcion h2 {
        font-size: 3.5rem;
        line-height: 3rem;
    }

    .cta-inscripcion .sub {
        font-size: 1.6rem;
    }

    .cta-inscripcion .destacado {
        font-size: 1.2rem;
    }

    .boton-compra {
        font-size: 1.8rem;
        padding: 15px 25px;
        line-height: 2rem;
    }

    .whatsapp-link {
        font-size: 1rem;
    }

    .cta-botones {
        gap: 20px;
    }
}


/* Sección Instructor - Fondo Blanco */
.seccion-instructor {
    background-color: #fff;
    color: #000;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.titulo-instructor {
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.contenedor-instructor {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.instructor-imagen {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.fondo-negro {
    background: linear-gradient(270deg, #000, #3d7ac3, #000);
    background-size: 600% 600%;
    border-radius: 8px;
    animation: animacion-degradado 10s ease infinite;
}

/* Animación del degradado */
@keyframes animacion-degradado {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.instructor-imagen img {
    max-width: 100%;
    height: auto;
    display: block;
}

.instructor-texto {
    flex: 1.5;
    min-width: 300px;
    font-size: 17px;
    line-height: 1.7;
}

.instructor-texto p {
    margin-bottom: 20px;
}

/* Texto saludo más grande */
.saludo {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--button-color);
}

.resaltado {
    font-weight: 700;
}

/* Responsivo */
@media (max-width: 768px) {
    .titulo-instructor {
        font-size: 38px;
        line-height: 2.5rem;
        margin-bottom: 40px;
    }

    .contenedor-instructor {
        flex-direction: column;
        text-align: center; /* Centrado en móvil */
    }

    .instructor-texto {
        font-size: 16px;
        text-align: center; /* Centrar texto en móvil */
    }

    .saludo {
        font-size: 22px;
    }

}

/* Sección Testimonios */
.seccion-testimonios {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.contenedor-testimonios {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.titulo-testimonios {
    font-size: 45px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

.intro-testimonios {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.testimonio {
    margin-bottom: 40px;
}

.nombre-testimonio {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3d7ac3; /* Naranja para resaltar */
}

.texto-testimonio {
    font-size: 18px;
    line-height: 1.7;
}

.cierre-testimonios {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 40px 0;
}

.btn-hero {
    display: block;
    margin: 0 auto;
}

/* Responsivo */
@media (max-width: 768px) {
    .titulo-testimonios {
        font-size: 38px;
        line-height: 2.5rem;
    }

    .intro-testimonios, .cierre-testimonios {
        font-size: 18px;
    }

    .nombre-testimonio {
        font-size: 16px;
    }

    .texto-testimonio {
        font-size: 16px;
    }
}

/* Sección FAQ */
.seccion-faq {
    background-color: #f8f8f8;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

.titulo-faq {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
}

.faq-contenedor {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-pregunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-pregunta h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.faq-icono {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--button-color);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-respuesta p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
}

/* Activo */
.faq-item.activo .faq-respuesta {
    max-height: 500px; /* Suficiente para el texto */
    opacity: 1;
}

.faq-item.activo .faq-icono {
    transform: rotate(45deg); /* Simula un tache */
}

/* Responsivo */
@media (max-width: 768px) {
    .titulo-faq {
        font-size: 39px;
        line-height: 2.5rem;
    }

    .faq-pregunta h3 {
        font-size: 17px;
    }

    .faq-respuesta p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-image: linear-gradient(to right, #3d7ac3, #33b199);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.footer i {
    margin-right: 8px;
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer {
        font-size: 14px;
    }

    .footer i {
        font-size: 16px;
    }
}

/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    background-color: #25D366; /* Color típico de WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 30px;
    transition: background-color 0.6s;
}

.whatsapp-float a:hover {
    background-color: white; /* Color oscuro de WhatsApp en hover */
    color: #25D366;
}

/* Tooltip (mensaje flotante) */
.tooltip {
    position: absolute;
    right: 70px;
    bottom: 15px;
    background-color: white;
    color: #060728;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0; /* Inicialmente invisible */
    transform: translateX(20px); /* Mover el texto a la derecha fuera de la vista */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Transición más lenta y suave */
}

/* Mostrar tooltip al hacer hover sobre el botón */
.whatsapp-float:hover .tooltip {
    opacity: 1; /* Hacer el tooltip visible */
    transform: translateX(0); /* Moverlo a su posición original */
}



