:root {
    --primary-gold: #C9A962;
    --accent-gold: #E8D4A7;
    --rose-gold: #B76E79;
    --deep-charcoal: #2C2C2C;
    --light-charcoal: #3A3A3A;
    --soft-white: #F8F6F3;
    --pure-white: #FFFFFF;
    --accent-green: #8B9D83;
    --text-dark: #2C2C2C;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(44, 44, 44, 0.7);
    color-scheme: light;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--soft-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BARRA DE URGÊNCIA ===== */
.top-urgency-bar {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-urgency-bar i {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(44, 44, 44, 0.95) 0%, 
        rgba(44, 44, 44, 0.90) 40%,
        rgba(44, 44, 44, 0.60) 70%,
        rgba(44, 44, 44, 0.30) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
    text-align: left;
}

.hero-visual-space {
    min-height: 500px;
    /* Espaço vazio para mostrar a imagem de fundo */
}

.logo-hero {
    max-width: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 20px rgba(201, 169, 98, 0.3));
}

.eyebrow-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 600;
    color: white;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

/* CTA Button Hero */
.cta-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B89751 100%);
    color: var(--deep-charcoal);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(201, 169, 98, 0.4),
        inset 0 -3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.cta-button-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button-hero:hover::before {
    left: 100%;
}

.cta-button-hero:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(201, 169, 98, 0.5),
        inset 0 -3px 10px rgba(0,0,0,0.2);
}

.cta-button-hero i {
    transition: transform 0.3s ease;
}

.cta-button-hero:hover i {
    transform: translateX(5px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Responsivo Hero */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-space {
        display: none;
    }

    .hero-overlay {
        background: rgba(44, 44, 44, 0.93);
    }

    .hero-section {
        padding: 50px 0 40px 0;
    }

    .hero-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .logo-hero {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100dvh;
        padding: 24px 0 28px 0;
    }

    .hero-image {
        object-position: center top;
    }

    .logo-hero {
        max-width: 130px;
        margin-bottom: 16px;
    }

    .eyebrow-text {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-button-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .trust-badges {
        gap: 14px;
    }

    .trust-item {
        font-size: 0.82rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 18px 0 22px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .logo-hero {
        max-width: 110px;
        margin-bottom: 12px;
    }

    .eyebrow-text {
        font-size: 0.75rem;
        margin-bottom: 10px;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .cta-button-hero {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* ===== SEÇÃO PROBLEMA ===== */
.problema-section {
    padding: 80px 0;
    background: var(--soft-white);
}

.alert-box-new {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 50px rgba(220, 53, 69, 0.3);
}

.alert-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.alert-content-new {
    flex: 1;
}

.alert-content-new h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.alert-content-new p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.alert-emphasis {
    font-weight: 700;
    font-size: 1.3rem !important;
    color: white !important;
    margin-top: 15px !important;
}

/* ===== SEÇÃO DIAGNÓSTICO ===== */
.diagnostico-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title-new {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--soft-white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-gold);
}

/* ÍCONES MENORES - CLEAN */
.benefit-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.benefit-card ul li i {
    color: var(--accent-green);
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA Intermediário */
.cta-intermediate {
    text-align: center;
    margin-top: 40px;
}

.cta-button-secondary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B89751 100%);
    color: var(--deep-charcoal);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.4);
}

.cta-button-secondary i {
    transition: transform 0.3s ease;
}

.cta-button-secondary:hover i {
    transform: translateX(5px);
}

/* ===== SEÇÃO POR QUE GRÁTIS ===== */
.why-free-section {
    padding: 100px 0;
    background: var(--soft-white);
}

.why-free-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-free-text {
    padding-right: 40px;
}

.methodology-points {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.method-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.method-point i {
    font-size: 1.8rem;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.method-point strong {
    display: block;
    font-size: 1.1rem;
    color: var(--deep-charcoal);
    margin-bottom: 5px;
}

.method-point p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.emphasis-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin: 30px 0;
    text-align: center;
}

/* Consultant Card */
.why-free-visual {
    position: relative;
}

.consultant-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
}

.consultant-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-gold);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.consultant-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-charcoal);
    margin-bottom: 5px;
}

.consultant-info > p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

.consultant-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--deep-charcoal);
}

.mini-stat i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* ===== SEÇÃO CTA FINAL ===== */
.cta-final-section {
    padding: 100px 0;
    background: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.limited-box,
.guarantee-box {
    background: var(--soft-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.limited-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.limited-header i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.limited-header h3,
.guarantee-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-charcoal);
}

.limited-box p,
.guarantee-box p {
    color: var(--deep-charcoal);
    line-height: 1.7;
    margin-bottom: 15px;
}

.spots-visual {
    margin: 30px 0;
}

.spots-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.spots-filled {
    height: 100%;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.spots-text {
    display: block;
    text-align: center;
    font-weight: 600;
    color: var(--deep-charcoal);
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dc3545;
    font-weight: 600;
    margin-top: 20px;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #6B8270 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 25px;
}

.guarantee-note {
    font-style: italic;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 20px !important;
}

.cta-final-action {
    text-align: center;
}

.cta-button-final {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B89751 100%);
    color: var(--deep-charcoal);
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(201, 169, 98, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(201, 169, 98, 0.5);
}

.cta-button-final i {
    transition: transform 0.3s ease;
}

.cta-button-final:hover i {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 20px;
    color: var(--deep-charcoal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-subtext i {
    color: var(--accent-green);
}

/* ===== FOOTER ===== */
.footer-new {
    background: var(--deep-charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact h4,
.footer-social h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--deep-charcoal);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    margin: 20px;
    z-index: 10001;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content-new {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: white;
    color: var(--deep-charcoal);
    transform: rotate(90deg);
}

.modal-header-new {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--light-charcoal) 100%);
    color: white;
    padding: 50px 40px 40px 40px;
    text-align: center;
    position: relative;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--deep-charcoal);
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.modal-header-new h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.modal-header-new p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.modal-body-new {
    padding: 40px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.modal-body-new::-webkit-scrollbar {
    width: 8px;
}

.modal-body-new::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body-new::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.modal-body-new::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-charcoal);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--soft-white);
    color: var(--deep-charcoal);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: rgba(0,0,0,0.4);
}

/* Radio Groups NEW */
.radio-group-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option-new {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    background: var(--soft-white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-option-new:hover {
    background: white;
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.radio-option-new input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.radio-option-new input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--primary-gold);
}

.radio-option-new input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-label {
    color: var(--deep-charcoal);
    font-size: 0.95rem;
    cursor: pointer;
}

.radio-option-new input[type="radio"]:checked ~ .radio-label {
    font-weight: 600;
    color: var(--primary-gold);
}

/* Submit Button */
.submit-btn-new {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B89751 100%);
    color: var(--deep-charcoal);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-new:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.4);
}

.submit-btn-new:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-privacy {
    text-align: center;
    color: var(--deep-charcoal);
    font-size: 0.85rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-privacy i {
    color: var(--accent-green);
}

.spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid var(--deep-charcoal);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message,
.error-message {
    display: none;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.success-message {
    background: linear-gradient(135deg, var(--accent-green) 0%, #6B8270 100%);
    color: white;
}

.error-message {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-free-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title-new {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-description {
        font-size: 1.05rem;
    }

    .problema-section {
        padding: 50px 0;
    }

    .diagnostico-section {
        padding: 55px 0;
    }

    .why-free-section {
        padding: 55px 0;
    }

    .cta-final-section {
        padding: 55px 0;
    }

    .alert-box-new {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .alert-content-new h2 {
        font-size: 1.7rem;
    }

    .alert-content-new p {
        font-size: 1.05rem;
    }

    .benefit-card {
        padding: 28px;
    }

    .benefits-grid {
        gap: 20px;
        margin-bottom: 40px;
    }

    .method-point {
        padding: 18px;
    }

    .method-point:hover {
        transform: none;
    }

    .consultant-card {
        padding: 28px;
    }

    .limited-box,
    .guarantee-box {
        padding: 28px;
    }

    .cta-grid {
        gap: 24px;
        margin-bottom: 40px;
    }

    .modal-content-wrapper {
        margin: 10px;
    }

    .modal-header-new {
        padding: 36px 22px 28px 22px;
    }

    .modal-body-new {
        padding: 22px;
    }

    .cta-button-secondary,
    .cta-button-final {
        font-size: 1rem;
        padding: 16px 30px;
    }

    .cta-button-final {
        width: 100%;
        justify-content: center;
    }

    .why-free-text {
        padding-right: 0;
    }

    .top-urgency-bar {
        font-size: 0.82rem;
        padding: 10px 16px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .section-title-new {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .problema-section {
        padding: 40px 0;
    }

    .diagnostico-section {
        padding: 44px 0;
    }

    .why-free-section {
        padding: 44px 0;
    }

    .cta-final-section {
        padding: 44px 0;
    }

    .benefit-card {
        padding: 22px;
    }

    .benefit-card h3 {
        font-size: 1.35rem;
    }

    .modal-header-new h2 {
        font-size: 1.6rem;
    }

    .consultant-photo {
        width: 130px;
        height: 130px;
    }

    .emphasis-text {
        font-size: 1.5rem;
    }

    .limited-header h3,
    .guarantee-box h3 {
        font-size: 1.6rem;
    }

    .cta-button-secondary,
    .cta-button-final {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .footer-new {
        padding: 44px 0 24px 0;
    }
}