/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Estilos del encabezado */
header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff9800;
}

/* Estilos del héroe */
#hero {
    background-color: #f8f8f8;
    padding: 100px 0;
}

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

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f57c00;
}

.hero-image {
    max-width: 700px;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0,0 , 1.0);
   /* animation: floating 3s ease-in-out infinite;*/
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Estilos de las secciones */
section {
    padding: 100px 50px;
}

/* Sobre Mí */
#about {
    padding: 80px 0;
    background-color: #fff;
}

.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.about-image img {
    width: 80%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 30px;
}
.about-content p {
    text-align: justify;
    text-justify: inter-word;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
}


/* Beneficios */
#benefits {
    background-color: #f4f4f4;
    text-align: center;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.benefit p {
    font-size: 16px;
    color: #666;
}
/* Estilos de los beneficios con iconos */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/* Media queries para responsividad */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
  
}
/* Testimonios */
#testimonials {
    background-color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 10 auto;
}

.testimonial {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-author {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Precios */
#pricing {
    background-color: #f8f8f8;
    text-align: center;
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-10px);
}

.pricing-plan.recommended {
    background-color: #323232;
    color: #fff;
}

.pricing-plan h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.features {
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
}

/* Contacto */
#contact {
    background-color: #F8F8F8;
    padding: 100px 0;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #f57c00;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media a {
    color: #fff;
    font-size: 24px;
    margin-left: 10px;
}

.social-media a:hover {
    color: #ff9800;
}

/* Media Queries */
@media screen and (max-width: 968px) {
    .hero-container,
    .contact-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-content,
    .hero-image,
    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    nav ul {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

   

    .pricing-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 20px;
    text-align: center;
}

.student-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #ffd700;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff9800;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

@media (max-width: 768px) {
    .testimonial-slide {
        padding: 10px;
    }
}
.pain-points {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.pain-points h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pain-card {
    perspective: 1000px;
    height: 200px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.pain-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-front {
     background: linear-gradient(5deg, #ffe0b2, #ffe0b2);
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}
.pain-icon {
    color: #8B4513;
    font-size: 24px;
    margin-bottom: 10px;
    align-items: center;
    
}

.card-back {
    background-color: #f8f8f8;
    color: #333;
    transform: rotateY(180deg);
    font-size: 16px;
    line-height: 1.5;
}

.timeline-section {
    background-color: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.timeline-track {
    display: flex;
    transition: transform 0.5s ease;
    
}

.timeline-slide {
    flex: 0 0 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
}

.timeline-item {
    flex: 1;
    position: relative;
    max-width: 300px;
}

.timeline-line {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #ff9800;
    top: 45px;
    left: 0%;
    z-index: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.timeline-icon i {
    color: white;
    font-size: 24px;
}

.timeline-date {
    font-weight: bold;
    color: #ff9800;
    margin: 15px 0;
}

.timeline-content {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.timeline-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.timeline-dot.active {
    background: #ff9800;
}

@media (max-width: 768px) {
    .timeline-slide {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 100%;
    }
}

.language-switcher {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}


.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    text-decoration: none;
    color: #333;
}

.lang-btn:hover {
    background: #f5f5f5;
}

.lang-btn.active {
    background: #e0e0e0;
    pointer-events: none;
    
}

@media (max-width: 768px) {
    .lang-btn span {
        display: none;
    }
    
    .lang-btn img {
        margin: 0;
    }
    
    .lang-btn {
        padding: 6px;
    }
}
.faq-section {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2d3748;
        }

        .faq-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
                        0 10px 15px rgba(0, 0, 0, 0.05);
        }

        .accordion-item {
            border-bottom: 1px solid #e2e8f0;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: #ffcba0;
        }

        .accordion-question {
            font-size: 1.1rem;
            font-weight: 500;
            color: #2d3748;
            margin: 0;
        }

        .accordion-icon {
            width: 24px;
            height: 24px;
            border: 2px solid #4a5568;
            border-radius: 50%;
            position: relative;
            transition: transform 0.3s ease;
        }

        .accordion-icon::before,
        .accordion-icon::after {
            content: '';
            position: absolute;
            background: #4a5568;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .accordion-icon::before {
            width: 12px;
            height: 2px;
        }

        .accordion-icon::after {
            width: 2px;
            height: 12px;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #ffcba0;
        }

        .accordion-answer {
            padding: 0 32px 24px;
            line-height: 1.6;
            color: #4a5568;
            margin: 0;
        }

        .accordion-item.active .accordion-header {
            background: #f7fafc;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
            border-color: #3182ce;
        }

        .accordion-item.active .accordion-icon::before,
        .accordion-item.active .accordion-icon::after {
            background: #3182ce;
        }
        
        .whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f3ba53;
    color: white;
    border-radius: 50px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(84, 84, 84, 0.3);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(84, 84, 84, 0.4);
}

.whatsapp-icon {
    font-size: 24px;
}

.whatsapp-text {
    font-size: 16px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    * {
    max-width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}
    .whatsapp-text {
        display: none;
    }
}
