@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', serif;
}
header {
    background-color: #FFF;
    color: #FF006B;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.3rem;
    text-align: center;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #0d0d0d;
    color: white;
}

.hero {
    display: flex;
    gap: 2rem;
    padding: 20px;

}
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    flex: 1;
    max-width: 70%;
}
.hero-text h1 {
    font-size: 2.8rem;
}
.hero-text p {
    font-size: 2rem;
    font-weight: 600;
}
.hero-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}
.cta-box {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none;
}
.cta {

    padding: 20px;
    background-color: #FF006B;
    width: 60%;
    display: flex;
    align-items: center;
    color: white;
    border-radius: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: 1.3rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.cta:hover {
    background-color: #25D366;
}
.hero-img .slide img {
    border-radius: 20px;
    box-shadow: 5px 5px 5px 10px #FF006B;
}
.hero-img {
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    justify-content: center;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}

.problem-context {
    display: flex;
    flex-direction: column;
    background-color: #ffF;
    justify-content: center;
    text-align: center;
    padding-bottom: 30px;
}
.problem-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    color: #FF006B;
    font-weight: 500;
}
.problem-text h2 {
    font-size: 1.8rem;
    background-color: #FF006B;
    color: #fff;
    padding: 30px;
    width: 100%;
}
.problem-text p {
    font-size: 1.3rem;
    width: 80%;
}
.problem-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    justify-content: center;
    align-items: stretch;
}
.problem-text ul li {
    border: 1px solid #FF006B;
    background-color: #FF006B;
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    padding: 30px;
    font-size: 1.2rem;
}
.solution {
    display: flex; 
    
}
.solution-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.solution-text h2 {
    font-size: 1.8rem;
    text-align: center;
    background-color: #FF006B;
    width: 100%;
    padding: 30px;
}
.solution-text p {
    font-size: 1.3rem;
    text-align: center;
    width: 80%;
}
.solution-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    justify-content: center;
    align-items: stretch;
}
.solution-text ul li {
    border: 1px solid #FFF;
    font-weight: 500;
    background-color: #FF006B;
    border-radius: 15px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 500px;
    padding: 30px;
    font-size: 1.2rem;
    text-align: left;
}
.solution-text img {
    width: 100px;
    filter: brightness(0) invert(1);
}
.metodo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 30px;
    
}
.metodo h2 {
    font-size: 1.8rem;
    text-align: center;
    background-color: #FF006B;
    width: 100%;
    padding: 30px;
}
.metodo p {
    font-size: 1.3rem;
    text-align: center;
    width: 80%;
}
.metodo ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 20px;
    justify-content: center;
    align-items: center;
    
}
.metodo ul li {
    border: 1px solid #FF006B;
    background-color: #fff;
    color: #FF006B;
    font-weight: 500;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    font-size: 1.2rem;
    width: 70%;
    margin: 0 auto;


}
.comentarios-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 30px;
}
.comentarios-section h2 {
    font-size: 2rem;
    background-color: #FF006B;
    width: 100%;
    padding: 30px;
    text-align: center;
    
}
.comentarios-section p {
    font-size: 1.3rem;
}
.carousel {
    width: 100%;
    max-width: 600px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #FF006B;
    color: white;
    padding: 20px;
    display: flex;
}
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Ajuste conforme necessário */
    margin: auto;
    overflow: hidden;
}

.review-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    white-space: nowrap;
}

.review {
    flex: 0 0 100%; /* Garante que cada review ocupa 100% da largura */
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.review p {
    font-size: 2rem;
}
.review-info {
    display: flex;
    font-size: 20px;
    gap: 1.2rem;
}

.review-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.3s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}
.stars {
    color: #facc15;
    font-size: 30px;
}
.comment {
    margin-top: 10px;
    font-style: italic;
}

.teacher {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background-color: #FF006B;
}
.teacher .cta {
    background-color: #1da851;
}
.teacher-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    
}
.teacher-content img {
    border-radius: 20px;
    box-shadow: 5px 5px 5px 10px #FFF;
}
.teacher-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;

}
.teacher-text h2 {
    font-size: 2.8rem;
    width: 100%;
    background-color: #FF006B;
    padding: 30px auto;
}
.teacher-text p {
    font-size: 1.8rem;
}
.teacher .cta-box p {
    font-size: 1.3rem;
}

.curso {
    background-color: #FF006B;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 20px;
    justify-content: center;
    align-items: center;
}
.curso-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.curso-text {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.curso-text h2 {
    font-size: 2rem;
}
.curso-text p {
    font-size: 1.3rem;
}
.curso-text ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
}
.curso-text ul li {
    font-size: 1.2rem;
}
.curso .cta-box {
    width: 65%;
    font-size: 1.3rem;

}
.curso .cta-box .cta {
    width: 45%;
}
.curso-img img {
    border-radius: 15px;
}

.aula-modulo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 30px;
}
.aula-modulo h2 {
    font-size: 2.3rem;
    text-align: center;
}
.aula-modulo p {
    font-size: 1.3rem;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.swiper {
    width: 80%;
    padding: 20px 0;
    
}
.modulo-box {
    background: #FF006B;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    
}
.modulo-box img {
    width: 400px;
    border-radius: 15px;
    margin: 0 auto;
}
.modulo-box ul {
    list-style: none;
}
.swiper-button-prev, .swiper-button-next {
    color: #fff;
}
.swiper-pagination-bullet {
    background: #fff;
}
.entregaveis {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.entregaveis h2 {
    width: 100%;
    text-align: center;
    font-size: 2.3rem;
    background-color: #FF006B;
    padding: 30px;
}
.entregaveis p {
    font-size: 1.3rem;
    
    width: 80%;
}
.entregaveis-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.entregavel {
    width: 400px;
    padding: 20px;
    font-size: 1.3rem;
    border: 1px solid #FFF;
    background-color: #FF006B;
    color: #FFF;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    text-align: left;
}
.entregavel img {
    width: 30%;
    filter: brightness(0) invert(1);
}
.price-section {
   
    padding: 50px 20px;
    text-align: center;
}
.bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 2rem;
}
.bonus h2 {
    font-size: 2.3rem;
    padding: 30px;
    background-color: #FF006B;
    width: 100%;
    text-align: center;
}
.bonus p {
    font-size: 1.3rem;
    width: 80%;
    text-align: center;
}

.bonus-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.bonus-item {
    width: 600px;
    padding: 30px;
    border: 1px solid #FF006B;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    gap:1.5rem;background-color: #FF006B;
    border-radius: 15px;
}
.bonus-item-text p {
    width: 100%;
    text-align: justify;
}
.bonus-item img {
    width: 200px;
    border-radius: 12px;
}
.price-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-container h2 {
    font-size: 2.3rem;
    color: #333;
    margin-bottom: 15px;
}

.highlight {
    color: #ff0000;
    font-weight: bold;
}

.price-container p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 15px;
}

.price-button {
    display: inline-block;
    background-color: #FF006B;
    color: #fff;
    padding: 15px 25px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.price-button:hover {
    background-color: #25D366;
}

.guarantee-text {
    font-size: 16px;
    color: #008000;
    margin-top: 10px;
}
.garantia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #FF006B;
    margin-top: 30px;
    padding: 30px;
}
.garantia-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.garantia h2 {
    font-size: 2.3rem;
}
.garantia p {
    font-size: 1.3rem;
}
.faq-container {
    max-width: 700px;
    width: 90%;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: "−";
    font-size: 20px;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
}


.cta-section {
    background-color: #FF006B;
    padding: 40px 20px;
    text-align: center;
    margin-top: 30px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-container h2 {
    font-size: 2.3rem;
    color: #333;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #FF006B;
    color: #fff;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.cta-button:hover {
    background-color: #1da851;
}
footer {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color:#FF006B;
    padding: 40px;
    color: white; 
    font-size: 1.5rem;

}
@media (max-width: 480px) {
    section {
        max-width: 480px;
    }
    header {
        max-width: 480px;
        width: 100%;
        padding: 10px;
        background-color: #FFF;
        color: #FF006B;
        font-weight: 500;
    }
    .hero {
        display: flex;
        flex-direction: column;
        padding: 5px;
    }
    .hero-text {
        width: 100%;
        max-width: 480px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.3rem;
    }
    .hero-text p {
        font-size: 1.6rem;
    }
    .hero-img {
        max-width: 480px;
        width: 100%;

    }
    .cta {
        width: 90%;
        margin: 10px;
    }
    .problem-text {
        max-width: 480px;
        width: 100%;
    }
    .problem-text ul {
        max-width: 480px;
        display: flex;
        flex-direction: column;
    }
    .solution-text {
        max-width: 480px;
        width: 100%;
    }
    .solution-text ul {
        display: flex;
        flex-direction: column;
        max-width: 480px;
        width: 100%;
    }
    .solution-text ul li {
        width: 100%;
        margin: 0 auto;
    }
    .metodo {
        max-width: 480px;
        flex-direction: column;
        display: flex;
        width: 100%;
    }
    .metodo ul {
        max-width: 480px;
        display: flex;
        flex-direction: column;
    }
    .metodo ul li {
        width: 90%;
    }
    .comentarios-section {
        max-width: 480px;
        text-align: center;
    }
    .teacher {
        max-width: 480px;
        width: 100%;
        padding: 5px;
    }
    .teacher-content {
        max-width: 480px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .teacher-content img {
        max-width: 480px;
        width: 90%;
    }
    .teacher-text {
        max-width: 480px;
        width: 100%;
        text-align: center;
    }
    .teacher-text h2 {
        font-size: 2.4rem;
        text-align:center;
        width: 100%;
    }
    .teacher-text p {
        font-size: 1.4rem;
    }
    .curso {
        max-width: 480px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .curso-content {
        max-width: 480px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .curso-text {
        max-width: 480px;
        width: 100%;
        text-align: center;
    }
    .curso-img  {
        max-width: 480px;
        width: 100%;
        
    }
    .curso-img img {
        max-width: 480px;
        width: 90%;
        
    }
    .curso .cta-box {
        max-width: 480px;
        width: 100%;
    }
    .curso .cta-box .cta {
        max-width: 480px;
        width: 100%;
        background-color: #25D366;
    }
    .entregaveis-content {
        max-width: 480px;
        width: 100%;
    }
    .bonus {
        max-width: 480px;
        width: 100%;
    }
    .bonus-content {
        max-width: 480px;
        width: 100%;
    }
    .bonus-item {
        max-width: 480px;
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    .price-section {
        max-width: 480px;
        width: 100%;
    }
    .garantia {
        display: flex;
        flex-direction: column;
        max-width: 480px;
        width: 100%;
    }
    .garantia-text {
        max-width: 480px;
        width: 100%;
        text-align: center;
    }
    .garantia img {
        max-width: 480px;
        width: 90%;
    }
    footer {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

}
@media (max-width: 768px) {
    section {
        max-width: 768px;
    }
    header {
        max-width: 768px;
        width: 100%;
        font-size: 1.5rem;
    }
    .hero {
        display: flex;
        flex-direction: column;
    }
    .hero-text {
        width: 100%;
        max-width: 768px;
        text-align: center;
    }
    .hero-img {
        max-width: 768px;
        width: 100%;

    }
    .cta {
        width: 90%;
        margin: 10px;
    }
    .problem-text {
        max-width: 768px;
        width: 100%;
    }
    .problem-text ul {
        max-width: 768px;
        display: flex;
        flex-direction: column;
    }
    .solution-text {
        max-width: 768px;
        width: 100%;
    }
    .solution-text ul {
        display: flex;
        flex-direction: column;
        max-width: 768px;
        width: 100%;
    }
    .solution-text ul li {
        width: 100%;
        margin: 0 auto;
    }
    .metodo {
        max-width: 768px;
        flex-direction: column;
        display: flex;
        width: 100%;
    }
    .metodo ul {
        max-width: 768px;
        display: flex;
        flex-direction: column;
    }
    .metodo ul li {
        width: 90%;
    }
    .comentarios-section {
        max-width: 768px;
        text-align: center;
    }
    .teacher {
        max-width: 768px;
        width: 100%;
    }
    .teacher-content {
        max-width: 768px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .teacher-content img {
        max-width: 768px;
        width: 90%;
    }
    .teacher-text {
        max-width: 768px;
        width: 100%;
        text-align: center;
    }
    .curso {
        max-width: 768px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .curso-content {
        max-width: 768px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .curso-text {
        max-width: 768px;
        width: 100%;
        text-align: center;
    }
    .curso-img  {
        max-width: 768px;
        width: 100%;
    }
    .curso-img img {
        max-width: 768px;
        width: 90%;
    }
    .curso .cta-box {
        max-width: 768px;
        width: 100%;
    }
    .curso .cta-box .cta {
        max-width: 768px;
        width: 100%;
        background-color: #25D366;
    }
    .entregaveis-content {
        max-width: 768px;
        width: 100%;
    }
    .bonus {
        max-width: 768px;
        width: 100%;
    }
    .bonus-content {
        max-width: 768px;
        width: 100%;
    }
    .bonus-item {
        max-width: 768px;
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    .price-section {
        max-width: 768px;
        width: 100%;
    }
    .garantia {
        display: flex;
        flex-direction: column;
        max-width: 768px;
        width: 100%;
    }
    .garantia-text {
        max-width: 768px;
        width: 100%;
        text-align: center;
    }
    .garantia img {
        max-width: 768px;
        width: 90%;
    }
    footer {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

}