/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Guardian Egyptian', 'Inter', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight-gold {
    color: #d4af37;
}

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

.hero-no-header {
    padding: 60px 0;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

/* Ebook Real */
.hero-ebook {
    display: flex;
    justify-content: center;
}

.ebook-real {
    perspective: 1000px;
}

.ebook-cover-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: rotateY(-8deg) rotateX(3deg);
    transition: all 0.3s ease;
}

.ebook-cover-image:hover {
    transform: rotateY(-4deg) rotateX(1deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Form */
.hero-form {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: #6c757d;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background: white;
}

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

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.beneficio-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.beneficio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.beneficio-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Sobre o Autor */
.sobre-autor {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.autor-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.autor-image {
    display: flex;
    justify-content: center;
}

.autor-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.autor-info {
    padding-top: 1rem;
}

.autor-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.autor-info h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.autor-cargo {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.autor-credenciais {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.credencial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
}

.credencial-icon {
    font-size: 1.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.credencial-item div {
    flex: 1;
}

.credencial-item strong {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.3;
}

.credencial-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.autor-quote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    font-style: italic;
    color: #2c3e50;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 1.05rem;
}

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

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

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

.cta-beneficios {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-beneficio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-icon {
    color: #d4af37;
}

.cta-urgencia {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d4af37;
    font-weight: 600;
}

.scroll-to-form {
    margin: 2rem 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

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

.footer ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer ul li a:hover {
    color: #d4af37;
}

.footer ul li a svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer ul li a:hover svg {
    transform: scale(1.1);
}

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

/* Página de Agradecimento */
.obrigado-no-header {
    padding: 60px 0 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-ebook {
        order: 2;
    }
    
    .hero-form {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .ebook-cover-image {
        max-width: 250px;
        transform: none;
    }
    
    .autor-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .autor-info .section-title {
        text-align: center;
    }
    
    .autor-image {
        order: -1;
    }
    
    .autor-info {
        padding-top: 0;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-beneficios {
        flex-direction: column;
        align-items: center;
    }
    
    .obrigado-no-header {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .ebook-cover {
        width: 200px;
        height: 280px;
        padding: 1.5rem;
    }
    
    .ebook-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .beneficio-item {
        padding: 1.5rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-main {
    animation-delay: 0.4s;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===== ESTILOS ESPECÍFICOS DA PÁGINA DE CONTEÚDO ===== */

/* Header da página de conteúdo - REDESIGN MODERNO */
.conteudo-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
}

.conteudo-header h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Introdução */
.introducao-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.introducao-content {
    max-width: 900px;
    margin: 0 auto;
}

.introducao-content h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.introducao-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.assinatura {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-style: italic;
}

.destaque-box {
    background: white;
    border-left: 5px solid #d4af37;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.destaque-box h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Sistema de Navegação por Tabs - REDESIGN MODERNO */
.indice-section {
    padding: 0;
    background: white;
    border-bottom: 2px solid #e9ecef;
    position: sticky;
    top: 85px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.indice-section h2 {
    display: none;
}

.indice-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.indice-grid::-webkit-scrollbar {
    display: none;
}

.indice-item {
    background: transparent;
    color: #6c757d;
    padding: 1.25rem 2rem;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: none;
    border-bottom: 3px solid transparent;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indice-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.indice-item:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    transform: none;
    box-shadow: none;
}

.indice-item:hover::before {
    transform: scaleX(1);
}

.indice-item.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.indice-item.active::before {
    transform: scaleX(1);
}

/* Cards dos Cursinhos - REDESIGN MODERNO COM GLASSMORPHISM */
.cursinho-section {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 150px;
}

.cursinho-section:nth-child(odd) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cursinho-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Todos os Cards com Visibilidade Igual */
.cursinho-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.cursinho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: #d4af37;
}

.cursinho-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cursinho-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
}

.cursinho-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.cursinho-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cursinho-badge {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.cursinho-descricao {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cursinho-info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.cursinho-info-box h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.cursinho-info-box ul {
    list-style: none;
}

.cursinho-info-box li {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.cursinho-info-box a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.cursinho-info-box a:hover {
    text-decoration: underline;
}

.cursinho-pontos-fortes {
    margin: 2rem 0;
}

.cursinho-pontos-fortes h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 0.65rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.professores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.professor-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.professor-area:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.professor-area h4 {
    color: #d4af37;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.professor-area ul {
    list-style: none;
}

.professor-area li {
    padding: 0.75rem 0;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.professor-area li:hover {
    padding-left: 0.5rem;
    color: #d4af37;
}

.professor-area li:last-child {
    border-bottom: none;
}

.cta-cursinho {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.cta-cursinho .btn-primary {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.cta-cursinho .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Professores Avulsos - REDESIGN MODERNO */
.avulsos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    scroll-margin-top: 150px;
}

.avulsos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.avulsos-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.avulsos-header p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

.avulsos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
}

.avulso-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.avulso-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.12),
        0 0 0 1px rgba(212,175,55,0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.avulso-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e9ecef;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avulso-professor {
    padding: 1.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.avulso-professor:hover {
    padding-left: 0.75rem;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
}

.avulso-professor:last-child {
    border-bottom: none;
}

.avulso-professor h4 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.professor-area-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.btn-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: #f1c40f;
}

.btn-link:hover::after {
    transform: translateX(5px);
}

/* CTA Final da página de conteúdo */
.cta-final-conteudo {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cursos-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.curso-cta-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.curso-cta-card:hover {
    transform: translateY(-5px);
}

.curso-cta-card.premium {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
}

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

.curso-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.curso-cta-card.premium h3 {
    color: white;
}

.curso-cta-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.curso-cta-card.premium p {
    color: white;
    opacity: 0.9;
}

.preco-destaque {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.curso-cta-card.premium .preco-destaque {
    color: white;
}

/* Preview de Conteúdo na landing page */
.conteudo-preview {
    padding: 80px 0;
    background: white;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

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

.preview-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.preview-item ul {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.preview-item li {
    padding: 0.5rem 0;
    color: #2c3e50;
    font-weight: 600;
}

.preview-item p {
    color: #6c757d;
    text-align: left;
}

/* ===== ESTILOS DA PÁGINA DE OBRIGADO ===== */

.obrigado-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.obrigado-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.obrigado-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.obrigado-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.obrigado-cta {
    margin: 2rem 0;
}

.obrigado-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-text strong {
    display: block;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #6c757d;
    margin: 0;
}

.obrigado-divisor {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.obrigado-divisor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.obrigado-divisor span {
    background: #f8f9fa;
    padding: 0 2rem;
    position: relative;
    color: #6c757d;
    font-weight: 600;
}

.obrigado-oferta {
    margin: 3rem 0;
}

.obrigado-oferta h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cursos-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.curso-mini-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.curso-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.curso-badge.premium {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.curso-mini-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.curso-preco {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1rem 0;
}

.curso-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.curso-features li {
    padding: 0.5rem 0;
    color: #2c3e50;
}

.btn-secondary {
    background: white;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
}

.obrigado-social {
    margin-top: 3rem;
}

.obrigado-social h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.15);
}

.footer-simple {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* ===== CUSTOMIZAÇÃO FORMULÁRIO ACTIVECAMPAIGN ===== */

/* Sobrescrever estilos do formulário ActiveCampaign para manter design atual */
#_form_7_ {
    background: white !important;
    border-radius: 15px !important;
    padding: 2.5rem !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
    max-width: none !important;
    margin: 0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

#_form_7_ ._form-content {
    margin: 0 !important;
    width: 100% !important;
}

/* Campos de input */
#_form_7_ input[type="text"],
#_form_7_ input[type="tel"],
#_form_7_ input[type="email"] {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    color: #2c3e50 !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

#_form_7_ input[type="text"]:focus,
#_form_7_ input[type="tel"]:focus,
#_form_7_ input[type="email"]:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

#_form_7_ input[type="text"]::placeholder,
#_form_7_ input[type="tel"]::placeholder,
#_form_7_ input[type="email"]::placeholder {
    color: #6c757d !important;
    font-size: 1rem !important;
}

/* Elementos do form */
#_form_7_ ._form_element {
    margin: 0 0 1.5rem 0 !important;
    position: relative !important;
    width: 100% !important;
    font-size: 1rem !important;
}

#_form_7_ ._form_element:last-of-type {
    margin-bottom: 0 !important;
}

/* Labels (remover se não usadas) */
#_form_7_ ._form-label {
    display: none !important;
}

/* Field wrapper */
#_form_7_ ._field-wrapper {
    position: relative !important;
    width: 100% !important;
}

/* Botão de submit */
#_form_7_ ._submit {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
    border: none !important;
    border-radius: 10px !important;
    color: white !important;
    cursor: pointer !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 1.25rem 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    margin-top: 0 !important;
    -webkit-appearance: none !important;
}

#_form_7_ ._submit:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

#_form_7_ ._submit:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

#_form_7_ ._submit.processing {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
    position: relative !important;
}

#_form_7_ ._submit.processing::before {
    border: double 3px transparent !important;
    border-radius: 50% !important;
    background-image: linear-gradient(#d4af37, #d4af37), conic-gradient(#d4af37, #FFFFFF) !important;
}

#_form_7_ ._submit.processing::after {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
}

/* Button wrapper */
#_form_7_ ._button-wrapper {
    margin: 1.5rem 0 0 0 !important;
    width: 100% !important;
}

/* Erros */
#_form_7_ input[type="text"]._has_error,
#_form_7_ input[type="tel"]._has_error,
#_form_7_ input[type="email"]._has_error {
    border-color: #e74c3c !important;
    background-color: #fdf2f2 !important;
}

#_form_7_ ._error {
    font-size: 0.875rem !important;
    margin-top: 0.5rem !important;
    color: #e74c3c !important;
    font-weight: 500 !important;
}

#_form_7_ ._error-inner {
    background-color: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    border-radius: 8px !important;
    color: #e74c3c !important;
    font-size: 0.875rem !important;
    padding: 0.75rem !important;
    margin-top: 0.5rem !important;
}

#_form_7_ ._form_error {
    background-color: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    border-radius: 8px !important;
    color: #e74c3c !important;
    font-size: 0.875rem !important;
    padding: 0.75rem !important;
    margin: 1rem 0 !important;
    text-align: center !important;
}

/* Mensagem de agradecimento */
#_form_7_ ._form-thank-you {
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    border-radius: 10px !important;
    color: #0c4a6e !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 2rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Integração com telefone internacional */
#_form_7_ .iti {
    width: 100% !important;
}

#_form_7_ .iti input {
    width: 100% !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 1rem 1.5rem !important;
    background: #f8f9fa !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1rem !important;
    color: #2c3e50 !important;
    height: auto !important;
}

#_form_7_ .iti input:focus {
    border-color: #d4af37 !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

#_form_7_ .iti--separate-dial-code .iti__selected-flag {
    background-color: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px 0 0 10px !important;
    border-right: none !important;
}

#_form_7_ .iti--separate-dial-code .iti__selected-flag:hover {
    background-color: white !important;
}

#_form_7_ .iti--separate-dial-code input {
    border-left: none !important;
    border-radius: 0 10px 10px 0 !important;
    padding-left: 1rem !important;
}

#_form_5_ .iti__country-list {
    border-radius: 10px !important;
    margin-top: 4px !important;
    border: 2px solid #e9ecef !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* Clear elements */
#_form_7_ ._clear-element {
    clear: both !important;
}

/* Branding (remover) */
#_form_7_ ._form-branding {
    display: none !important;
}

/* Responsivo para formulário */
@media (max-width: 768px) {
    #_form_7_ {
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    #_form_7_ input[type="text"],
    #_form_7_ input[type="tel"],
    #_form_7_ input[type="email"] {
        padding: 0.875rem 1.25rem !important;
        font-size: 1rem !important;
    }
    
    #_form_7_ ._submit {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    #_form_7_ ._form_element {
        margin-bottom: 1.25rem !important;
    }
    
    #_form_7_ .iti__country-list {
        min-width: 300px !important;
    }
}

@media (max-width: 480px) {
    #_form_7_ {
        padding: 1.25rem !important;
        border-radius: 10px !important;
    }
    
    #_form_7_ input[type="text"],
    #_form_7_ input[type="tel"],
    #_form_7_ input[type="email"] {
        padding: 0.75rem 1rem !important;
    }
    
    #_form_7_ ._submit {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}

/* Responsivo específico para páginas novas */
@media (max-width: 768px) {
    .conteudo-header {
        position: relative;
        top: auto;
    }
    
    .conteudo-header h1 {
        font-size: 1.2rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-logo {
        height: 35px;
    }
    
    .indice-section {
        position: relative;
        top: auto;
    }
    
    .indice-grid {
        justify-content: flex-start;
    }
    
    .indice-item {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .indice-item svg {
        width: 16px;
        height: 16px;
    }
    
    .cursinho-section {
        padding: 50px 0;
    }
    
    .cursinho-card {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .cursinho-logo-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cursinho-logo {
        height: 40px;
        max-width: 150px;
    }
    
    .cursinho-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cursinho-badge {
        align-self: flex-start;
    }
    
    .cursinho-descricao {
        font-size: 1rem;
    }
    
    .professores-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .professor-area h4 {
        font-size: 1.05rem;
    }
    
    .avulsos-section {
        padding: 50px 0;
    }
    
    .avulsos-header h2 {
        font-size: 2rem;
    }
    
    .avulsos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .avulso-card {
        padding: 1.75rem;
    }
    
    .cursos-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .obrigado-info {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .introducao-section {
        padding: 40px 0;
    }
    
    .introducao-content h2 {
        font-size: 2rem;
    }
    
    .introducao-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .indice-item {
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }
    
    .cursinho-card {
        padding: 1.5rem;
    }
    
    .cursinho-header h2 {
        font-size: 1.5rem;
    }
    
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .avulso-card {
        padding: 1.5rem;
    }
    
    .avulso-card h3 {
        font-size: 1.3rem;
    }
    
    .avulso-professor h4 {
        font-size: 1.1rem;
    }
}
