/* Reset e configurações básicas - Cache Busting v20250911-1300 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Guardian Egyptian', Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Highlights */
.highlight-red {
    color: #cab54b;
    font-weight: 800;
}

.highlight-blue {
    color: #172e4d;
    font-weight: 700;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #cab54b 0%, #a89a3e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(202, 181, 75, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 181, 75, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #172e4d 0%, #0f1f35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 46, 77, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 46, 77, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: auto;
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    border-radius: 0 !important;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 60px;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

/* Conteúdo Principal */
.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #555;
    line-height: 1.4;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 10px 0 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    padding: 5px;
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.video-container-main {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0;
}

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

/* Benefícios e CTA */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border-left: 4px solid #cab54b;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

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

.feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature span:last-child {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.hero-cta-main {
    text-align: center;
    margin-top: 20px;
}

.hero-cta-main .guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-cta {
    text-align: left;
}

.cta-subtitle {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.guarantee {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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


.professor-image {
    flex-shrink: 0;
}

.professor-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

/* Aprovados Section */
.aprovados {
    padding: 80px 0;
    background: #fff;
}

.aprovados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.aprovados-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.outros-aprovados h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

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

.aprovado-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #cab54b;
}

.concurso {
    color: #172e4d;
    font-weight: 600;
}

.aprovados-footer {
    text-align: center;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
}

/* Problemas Section */
.problemas {
    padding: 80px 0;
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.problema-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #cab54b;
}

.problema-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problema-item p {
    margin: 0;
    font-weight: 500;
}

.solucao-destaque {
    background: linear-gradient(135deg, #cab54b 0%, #a89a3e 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(202, 181, 75, 0.3);
}

.solucao-destaque h3 {
    font-size: 2rem;
    margin: 0;
}

/* Metodologia Section */
.metodologia {
    padding: 80px 0;
    background: #fff;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.metodologia-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #172e4d;
}

.metodologia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.metodologia-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metodologia-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.metodologia-item p {
    color: #555;
    line-height: 1.6;
}

/* Conteúdo Adicional Section */
.conteudo-adicional {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.conteudo-lista {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.conteudo-coluna {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conteudo-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.conteudo-item.destaque {
    background: linear-gradient(135deg, #172e4d 0%, #0f1f35 100%);
    color: white;
    font-weight: 600;
}

.conteudo-arrow {
    color: #cab54b;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.conteudo-item.destaque .conteudo-arrow {
    color: #fff;
}

/* Desenvolvimento Pessoal Section */
.desenvolvimento-pessoal {
    padding: 80px 0;
    background: #fff;
}

.desenvolvimento-content h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.desenvolvimento-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.desenvolvimento-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid #172e4d;
}

.desenvolvimento-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.desenvolvimento-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Incluso Section */
.incluso {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.incluso-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.incluso-item:hover {
    transform: translateY(-5px);
}

.incluso-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.incluso-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.incluso-item p {
    color: #555;
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: #fff;
}

.depoimentos-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.depoimentos-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.depoimento-video h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

/* VÍDEOS DE DEPOIMENTOS COM PROPORÇÃO 16:9 PERFEITA */
.depoimento-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-video iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 10px !important;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    background: transparent !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

.depoimento-pequeno {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-pequeno iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 10px !important;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    background: transparent !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

/* Fallback com seletores ainda mais específicos */
section.depoimentos .depoimento-video iframe,
section.depoimentos .depoimento-pequeno iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mais-depoimentos h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.depoimentos-grid-pequenos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-pequeno h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

/* Instagram Testimonials Section */
.instagram-depoimentos {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.instagram-depoimentos h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

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

.instagram-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.instagram-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instagram-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.instagram-info {
    display: flex;
    flex-direction: column;
}

.instagram-username {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.instagram-time {
    font-size: 0.8rem;
    color: #666;
}

.instagram-content {
    padding: 20px;
}

.instagram-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.instagram-content p:last-child {
    margin-bottom: 0;
}

.instagram-content strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Depoimentos Reais Grid */
.depoimentos-reais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento-real {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.depoimento-real:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.depoimento-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Nova Seção: Alunos Dizendo */
.alunos-dizendo {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.alunos-dizendo h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.alunos-dizendo-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.alunos-dizendo .depoimentos-grid-pequenos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alunos-dizendo .depoimento-pequeno {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.alunos-dizendo .depoimento-pequeno:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.alunos-dizendo .depoimento-pequeno h4 {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: 0;
    color: #2c3e50;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
}

.alunos-dizendo .depoimento-pequeno iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 10px !important;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    background: transparent !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

/* Responsividade para nova seção */
@media (max-width: 768px) {
    .alunos-dizendo .depoimentos-grid-pequenos {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .alunos-dizendo h3 {
        font-size: 1.5rem;
    }
    
    .alunos-dizendo-subtitle {
        font-size: 1rem;
    }
}

/* Oferta Section - Versão Simplificada e Enxuta */
.oferta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.oferta-title {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

/* Comparação Simplificada */
.oferta-comparacao-simples {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 3rem;
}

.comparacao-item-simples {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.comparacao-item-simples.destaque {
    background: rgba(202, 181, 75, 0.2);
    border: 2px solid #cab54b;
    transform: scale(1.05);
}

.comparacao-item-simples h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.comparacao-valor {
    font-size: 1.6rem;
    font-weight: 700;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.comparacao-badge {
    background: linear-gradient(135deg, #cab54b 0%, #a89a3e 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.comparacao-desc {
    font-size: 0.95rem;
    color: #ecf0f1;
    line-height: 1.4;
}

.comparacao-vs {
    font-size: 1.8rem;
    font-weight: 800;
    color: #cab54b;
    text-align: center;
}

/* Preço Direto */
.preco-direto {
    text-align: center;
    margin-bottom: 3rem;
}

.preco-container-simples {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(202, 181, 75, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.preco-de {
    font-size: 1.1rem;
    color: #bdc3c7;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.preco-principal {
    font-size: 4rem;
    font-weight: 800;
    color: #cab54b;
    margin: 1rem 0;
    text-shadow: 0 4px 8px rgba(202, 181, 75, 0.4);
    line-height: 1;
}

.preco-parcelado {
    font-size: 1.2rem;
    color: #ecf0f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.economia-simples {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #27ae60;
}

/* ROI Resumido */
.roi-resumido {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
    text-align: center;
}

.roi-resumido h3 {
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    font-size: 1.5rem;
}

.roi-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.roi-item-simples {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #ecf0f1;
    border-left: 4px solid #cab54b;
}

.roi-item-simples strong {
    color: #cab54b;
    display: block;
    margin-bottom: 0.5rem;
}

.oferta-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-garantia {
    margin-top: 15px;
    font-size: 1rem;
    color: #ecf0f1;
}

.observacao {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border-left: 4px solid #f39c12;
}

.observacao p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #cab54b;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #cab54b 0%, #a89a3e 100%);
    color: white;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-final-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.cta-final .btn-primary {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-final .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.cta-final-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-info h3 {
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: #e74c3c;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Força viewport correto em mobile */
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative !important;
    }
    
    /* Corrige header em mobile */
    .header {
        width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Corrige container do nav */
    .nav .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Corrige botão flutuante do Telegram */
    .telegram-float,
    .whatsapp-float {
        position: fixed !important;
        max-width: calc(100vw - 40px) !important;
        box-sizing: border-box !important;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

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

    .hero-cta-main {
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .professor-image img {
        width: 100px;
        height: 100px;
    }

    .aprovados-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .aprovados-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .problemas-grid {
        grid-template-columns: 1fr;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
    }

    .conteudo-lista {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .desenvolvimento-lista {
        grid-template-columns: 1fr;
    }

    .incluso-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-videos {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid-pequenos {
        grid-template-columns: 1fr;
    }

    .oferta-comparacao {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparacao-vs {
        order: 2;
    }

    .oferta-destaque {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preco-por {
        font-size: 3rem;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-cta {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .preco-por {
        font-size: 2.5rem;
    }

    .cta-final-content h2 {
        font-size: 2rem;
    }

    .professor-image img {
        width: 150px;
        height: 150px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.metodologia-item,
.incluso-item,
.depoimento-video {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave para links internos */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Estados de foco para acessibilidade */
.btn:focus,
.faq-question:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Otimizações de performance */
.video-container iframe,
.depoimento-video iframe,
.depoimento-pequeno iframe {
    /* Removido loading: lazy que pode estar causando problemas */
}

/* Fix para garantir que os vídeos de depoimento sejam visíveis - Padrão do Coaching */
.depoimento-video iframe,
.depoimento-pequeno iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px !important;
}

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