/* Estilos Gerais */
:root {
    --primary-color: #ffc107; /* Amarelo */
    --secondary-color: #ffc107; /* Amarelo */
    --dark-color: #000000; /* Preto */
    --light-color: #ffffff; /* Branco */
    --text-color: #000000; /* Preto */
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--primary-color);
}

/* Botões */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.main-cta {
    font-size: 1.3rem;
    padding: 18px 40px;
    margin: 30px auto;
    display: block;
    width: 80%;
    max-width: 400px;
}

/* Header e Hero */
.hero {
    background: linear-gradient(135deg, #000000, #222222);
    color: white;
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.hero-text {
    flex: 1;
    padding-right: 30px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-video {
    flex: 1;
}

.video-placeholder {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Seção Problema/Solução */
.problem-solution {
    background-color: var(--light-color);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.problems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.solution {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.solution h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.solution-text {
    font-size: 1.2rem;
}

/* Seção Como Funciona / MPCR */
.mpcr-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pillar {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pillar-letter {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.pillar:nth-child(2) .pillar-letter {
    background-color: var(--secondary-color);
}

.pillar:nth-child(3) .pillar-letter {
    background-color: #4caf50;
}

.pillar:nth-child(4) .pillar-letter {
    background-color: #9c27b0;
}

/* Seção Conteúdo do Programa */
.program-content {
    background-color: var(--light-color);
}

.modules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.module {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.module:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.module h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Seção Para Quem é Este Programa */
.personas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.persona {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
}

.persona:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.persona-icon {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 40px;
}

.persona p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Seção Depoimentos */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    min-width: 100%;
    transition: all 0.3s ease;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.quote::before, .quote::after {
    content: '"';
    font-size: 3rem;
    color: #ddd;
    position: absolute;
}

.quote::before {
    top: -20px;
    left: -10px;
}

.quote::after {
    bottom: -40px;
    right: -10px;
}

.author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 20px;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: #777;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Seção Sobre o Instrutor */
.instructor-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.instructor-image {
    flex: 1;
    max-width: 400px;
}

.instructor-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.instructor-text {
    flex: 1;
}

.instructor-text h2 {
    margin-bottom: 30px;
}

.instructor-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Seção Oferta e CTA Final */
.offer {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    text-align: center;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
}

.offer-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.offer-includes {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    color: var(--text-color);
    margin-bottom: 30px;
}

.offer-includes h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.offer-includes ul {
    list-style: none;
    text-align: left;
}

.offer-includes li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 15px;
}

.guarantee {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.guarantee-icon {
    font-size: 3rem;
    margin-right: 25px;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text h3 {
    color: white;
    margin-bottom: 10px;
}

.guarantee-text p {
    margin-bottom: 0;
}

.price-container {
    margin: 40px 0;
}

.price-box {
    background-color: white;
    color: var(--dark-color);
    display: inline-block;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.price-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-original {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.price-original span {
    text-decoration: line-through;
    color: #999;
}

.price-installment {
    font-size: 1.1rem;
    color: #666;
}

.secondary-cta {
    margin-top: 20px;
}

.secondary-cta a {
    color: white;
    text-decoration: underline;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.secondary-cta a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Seção FAQ */
.faq {
    background-color: var(--light-color);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Rodapé */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .instructor-content {
        flex-direction: column;
    }
    
    .instructor-image {
        margin-bottom: 30px;
        max-width: 300px;
    }
    
    .instructor-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text .subtitle {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-cta {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .problem-card, .pillar, .module {
        min-width: 100%;
    }
    
    .persona {
        max-width: 100%;
    }
    
    .offer-includes {
        padding: 30px 20px;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .guarantee-text {
        text-align: center;
    }
}
