@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

/* ===== RESET & VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E99A00;
    --primary-dark: #d18b00;
    --primary-light: #fff9e6;
    --dark: #111111;
    --dark-light: #1a1a1a;
    --dark-medium: #2a2a2a;
    --light: #ffffff;
    --gray: #f8f8f8;
    --gray-medium: #e8e8e8;
    --gray-dark: #666666;
    --border: #dddddd;
    --neon-green: #39ff14;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITÁRIOS ===== */
.text-center { 
    text-align: center;     
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.highlight { color: var(--primary); }
.text-dark { color: var(--dark); }
.text-light { color: var(--light); }
.text-primary { color: var(--primary); }

.bg-primary { background: var(--primary); }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light); }
.bg-gray-dark { background: var(--gray-dark); }

.border-primary { border-color: var(--primary); }
.border-dark { border-color: var(--dark); }
.border-light { border-color: var(--light); }

/* ===== HERO SECTION ===== */
.hero {
    color: var(--light);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.aula-magna-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./assets/imgs/banner3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin: 2.5rem auto;
    opacity: 0.9;
    font-weight: 300;
    max-width: 90%;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: var(--dark);
    color: var(--neon-green);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    text-transform: uppercase;
}

.cta-button.pulse {
    animation: simple-neon-pulse 2s infinite;
}

.cta-button.dark-cta {
    background: var(--dark);
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.aula-magna-cta {
    margin: 30px auto;
    display: block;
    width: fit-content;
}

@keyframes simple-neon-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
    }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: 80px 0;
    background: var(--gray-dark);
    color: var(--light);
}

.aula-magna-social .container {
    background: var(--light);
    padding: 50px 20px;
    border-radius: 15px;
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}

.proof-content {
    text-align: center;
    width: 100%;
}

.proof-content h1 {
    font-size: 3.5rem;
}

.proof-text {
    font-size: 1.4rem;    
    line-height: 1.7;
    text-align: center;
    color: var(--dark);
    width: 90%;    
    margin: 50px auto !important;
}

/* ===== PROOF GRID & MODULES ===== */
.proof-grid {
    width: 100%;
    margin: 50px 0 30px 0;
}

.aula-magna-proof .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.aula-magna-card {
    background: transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.aula-magna-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.aula-magna-card.span-3 {
    grid-column: span 3;
}

.module-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.module-number {
    font-size: 2.5rem;
    margin: 15px 0 5px;
}

.aula-magna-card h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 10px 15px;
}

.module-description {
    color: var(--dark);
    padding: 0 20px 20px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

/* ===== OFERTA DIA ===== */
.oferta-dia {
    border-radius: 12px;
    text-align: center;
    font-size: 1.3rem;
    padding: 25px;
    width: 90%;
    max-width: 750px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.aula-magna-oferta {
    background: var(--primary);
    color: var(--dark);
    border: 3px solid var(--dark);
}

.aula-magna-oferta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.oferta-preco {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 20px 0;
}

.proof-final {
    font-size: 1.4rem;
    margin: 3rem 0;
    text-align: center;
    color: var(--dark);
    width: 90%;
    margin: 50px auto;
    max-width: 800px;
}

.aula-magna-final {
    text-align: center;
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aula-magna-video {
    margin: 40px auto;
}

.hero-video {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.2) 100%
    );
    pointer-events: none;
}

/* ===== GOOGLE REVIEWS ===== */
.google-reviews {    
    height: auto;
    width: 100%;
}

.google-reviews a {
    margin: 50px 0;
}

.aula-magna-reviews {
    margin: 40px 0;
}

.google-reviews .section-header h2 {
    font-size: 2.5rem;
    color: var(--light);
    font-weight: 700;
    text-align: center;    
}

.google-reviews .section-header {
    display: none;
}


/* ===== CARROSSEL AUTOMÁTICO COM 2 CARDS ===== */
.carrossel-auto-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
    padding: 20px 0;
}

.carrossel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    will-change: transform;
}

.carrossel-slide {
    flex: 0 0 calc(50% - 15px); /* 2 cards com gap de 30px */
    min-width: calc(50% - 15px);
    transform: scale(0.95);
    opacity: 0.85;
    transition: all 0.5s ease;
}

.carrossel-slide.active {
    transform: scale(1);
    opacity: 1;
}

/* Estilo dos cards no carrossel */
.google-review-card.carrossel-card {
    height: auto;
    margin: 0;
    transition: all 0.3s ease;
}

/* Efeito hover sutil */
.google-review-card.carrossel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Remover controles visuais */
.carrossel-auto-container .carousel-controls,
.carrossel-auto-container .carousel-indicators {
    display: none;
}

/* Responsividade do carrossel - CORRIGIDO */
@media (max-width: 768px) {
    .carrossel-auto-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .carrossel-track {
        justify-content: flex-start; /* IMPORTANTE para centralização */
    }
    
    .carrossel-slide {
        flex: 0 0 100%; /* 1 card no mobile */
        min-width: 100%;
        max-width: 500px; /* Limitar largura máxima */
        margin: 0 auto; /* Centralizar horizontalmente */
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .carrossel-auto-container {
        padding: 15px;
    }
    
    .carrossel-slide {
        max-width: 100%; /* Usar 100% da largura disponível */
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.google-review-card {
    background: var(--light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray);
    border: 1px solid var(--border);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-date,
.review-location {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffb400;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.review-content {
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark);
    margin: 0;
    font-style: normal;
    min-height: 150px;    
}

.review-footer {
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.google-business {
    font-size: 0.8rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* ===== PROBLEMA + SOLUÇÃO ===== */
.problem-solution {
    padding: 0px 0;
    background: var(--light);
}

.aula-magna-problem .section-header h2 {
    color: var(--dark);    
    padding: 50px 0;
}

.section-header {
    text-align: center;    
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--dark);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--primary);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.4rem;
    font-weight: 450;
    margin: 0;
    color: var(--dark);
}

.problem-item strong {
    font-weight: bold;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 1440px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(233, 154, 0, 0.3);
}

.solution-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.solution-box p {
    font-size: 1.4rem;
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

/* ===== METHOD ===== */
.method {
    background: var(--primary);
}

.aula-magna-method .section-header h2 {
    color: var(--dark);      
    padding: 50px 0;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.aula-magna-steps {
    margin: 0 auto;
    max-width: 1200px;
}

.step {
    background: var(--light);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(233, 154, 0, 0.2);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.step p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1.4rem;
}

/* ===== FESTA PLACEHOLDER ===== */
.festa-placeholder {
    padding: 80px 0;
    background: var(--gray-dark);
    color: var(--light);
    text-align: center;
}

.aula-magna-festa {
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1200px;
}

.festa-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.festa-grid {
    margin: 40px 0;
}

.festa-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.festa-card .module-image {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--primary);
}

/* ===== ANCORAGEM ===== */
.ancoragem {
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.aula-magna-ancoragem {
    background: var(--primary);
    border: 3px solid var(--dark);
}

.ancoragem-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.price-comparison {
    margin-bottom: 2.5rem;
    text-align: center;
}

.aula-magna-price .old-price {
    color: var(--dark);
    font-size: 1.3rem;
    text-decoration: line-through;
    margin-bottom: 10px;
    display: block;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin: 10px 0;
}

/* ===== INVESTMENT ===== */
.investment {
    padding: 100px 0;
    background: var(--primary);
}

.aula-magna-investment-card {
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid var(--primary);
    max-width: 700px;
    margin: 0 auto;
}

.guarantee {
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.aula-magna-guarantee {
    background: var(--dark);
    border: 2px solid var(--primary);
}

.guarantee-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.guarantee-text {
    color: var(--light);
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

.risk-zero {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 20px;
}

.risk-text {
    color: var(--light);
    font-weight: 700;
    margin-top: 10px;
}

.investment-final {
    font-style: italic;
    margin: 2rem 0;
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.aula-magna-final-text {
    font-size: 1.2rem;
    text-align: center;
}

.investment-cta {
    text-align: center;
    color: var(--primary);
    margin: 2rem 0;
    font-size: 1.8rem;
}

.aula-magna-investment-cta {
    font-size: 2rem;
    color: var(--primary);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 0;
    margin: 40px 0;
    background: transparent;
}

.aula-magna-final-cta .cta-content {
    background: var(--gray-dark);
    border: 2px solid var(--primary);
    padding: 40px;
    border-radius: 10px;
}

.urgency-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-text {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-text strong {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.dev-footer {
    width: 100%;
    padding: 25px 0;
    background-color: var(--gray-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev-footer .footer-content {
    font-family: "Roboto", sans-serif;
    color: var(--light);    
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.dev-footer a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.dev-footer a:hover {
    color: var(--light);
}

/* ===== RESPONSIVIDADE GERAL ===== */
@media (max-width: 1024px) {
    .aula-magna-proof .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aula-magna-card.span-3 {
        grid-column: span 2;
    }
    
    .method-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        width: 90%;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: justify;
    }
    
    .aula-magna-proof .modules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .aula-magna-festa {
        margin: 0 auto;
        border-radius: 0;
        padding: 40px 0;
    }

    .investment {
        padding: 50px 0;
    }
    
    .aula-magna-card.span-3 {
        grid-column: span 1;
    }

    .aula-magna-oferta {
        width: 100%;
        gap: 0;
        margin: 30px auto -40px auto;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .solution-box p {
        line-height: normal;
        text-align: center;
    }

    .problem-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .problem-icon {
        display: none;
    }

    .problem-item p {
        font-size: 1.2rem;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .aula-magna-oferta h3 {
        font-size: 1.6rem;
    }
    
    .oferta-preco {
        font-size: 1.8rem;
    }
    
    .festa-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .proof-content h1 {
        font-size: 2rem;
    }
    
    .ancoragem-title {
        font-size: 1.3rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .urgency-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .urgency-text {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .aula-magna-investment-card {
        padding: 30px 20px;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .aula-magna-investment-cta {
        font-size: 1.6rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .google-review-card {
        padding: 20px;
    }
    
    .google-reviews .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px !important;
    }

    .proof-text, .proof-final {
        text-align: justify;
        width: 100%;
        font-size: 1.2rem;
    }

    .step {
        padding: 30px 20px;
    }

    .step-number {
        font-size: 2.5rem;
        display: none;
    }

    .step h3 {
        font-size: 1.5rem;
    }

    .step p {
        font-size: 1.2rem;
    }

    .review-text {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero {
        height: 1100px;
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .aula-magna-oferta h3 {
        font-size: 1.4rem;
    }
    
    .oferta-preco {
        font-size: 1.5rem;
        line-height: normal;
    }
    
    .festa-title {
        font-size: 1.5rem;
    }
    
    .ancoragem {
        padding: 25px 15px;
    }
    
    .ancoragem-title {
        font-size: 1.1rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .module-number {
        font-size: 2rem;
    }
    
    .aula-magna-card h4 {
        font-size: 1.3rem;
        margin: 10px;
    }
    
    .module-description {
        font-size: 1.1rem;
        padding: 0 15px 15px;
    }
    
    .review-header {
        gap: 10px;
    }
    
    .google-logo {
        align-self: flex-start;
    }
    
    .guarantee {
        padding: 20px 15px;
    }
    
    .aula-magna-final-text {
        font-size: 1.2rem;
        text-align: justify;
    }
}

.aula-magna-cta-section a {
    margin: 30px 0 30px 0;
}

@media (max-width: 320px) {
    .hero {
        height: 1300px;
    }
}

/* =========================================================
   TIPOGRAFIA — ESTILO PROFISSIONAL PARA LANDING PAGE DE CURSO
   ========================================================= */

/* ===== FONTES GERAIS ===== */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    letter-spacing: 0.2px;
}

/* ===== HEADINGS GERAIS ===== */
h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* ===== TÍTULOS MAIORES ===== */
.title-xl {
    font-size: 3.3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
}

.title-lg {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* ===== SUBTÍTULOS ===== */
.subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== PARÁGRAFOS ===== */
.p-base {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 400;
}

.p-lg {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.8;
}

.p-bold {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ===== DESTAQUES ===== */
.text-highlight {
    color: var(--primary);
    font-weight: 900;
}

.text-important {
    color: var(--dark);
    background: var(--primary-light);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 700;
}

/* ===== HERO ===== */
.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-top: 20px;
    opacity: 0.95;
}

/* ===== GRADUAÇÃO DE TEXTOS PELOS SECTIONS ===== */
.section-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== CARDS ===== */
.google-review-card p,
.review-text,
.module-description,
.step p,
.problem-item p {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .title-xl { font-size: 2.4rem; }
    .title-lg { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-header h2 { font-size: 2rem; }
    .p-base, .p-lg, .module-description { font-size: 1.1rem; }
}

.sublinhado {
  color: #fff;
  text-decoration-line: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px; /* espessura */
  text-underline-offset: 4px;     /* distância do texto */  
}

.sublinhado-black {
  color: #000;
  text-decoration-line: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 2px; /* espessura */
  text-underline-offset: 4px;     /* distância do texto */  
}

.negrito {
  font-weight: bold;
}

.img-garantia {
    width: 150px;
    height: 150px;
}

/* ===============================
   FINAL CTA — MELHORIA DE INTERFACE
   (SEM ALTERAR CONTEÚDO)
   =============================== */

.aula-magna-final-cta {
  margin: 40px auto;
}

.aula-magna-final-cta .cta-content {
  background: linear-gradient(
    135deg,
    #111 0%,
    #1a1a1a 50%,
    #0b0b0b 100%
  );
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Glow decorativo sutil */
.aula-magna-final-cta .cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(233,154,0,0.25),
    transparent 70%
  );
  pointer-events: none;
}

/* Título */
.aula-magna-final-cta .urgency-title {
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

/* Texto */
.aula-magna-final-cta .urgency-text {
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 650px;
  opacity: 0.95;
}

/* CTA */
.aula-magna-final-cta .cta-button {
  margin: 0 auto;
  font-size: 1.3rem;
  padding: 20px 55px;
  border-radius: 60px;
  box-shadow:
    0 0 25px rgba(57,255,20,0.6),
    0 15px 35px rgba(0,0,0,0.8);
}

/* Hover mais impactante */
.aula-magna-final-cta .cta-button:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 35px rgba(57,255,20,0.9),
    0 20px 45px rgba(0,0,0,0.9);
}

/* ===============================
   MOBILE
   =============================== */
@media (max-width: 768px) {
  .aula-magna-final-cta .cta-content {
    padding: 40px 25px;
  }

  .aula-magna-final-cta .urgency-title {
    font-size: 1.7rem;
  }

  .aula-magna-final-cta .urgency-text {
    font-size: 1.2rem;
    text-align: center;
  }
}
