:root {
    --gold: #F5C518;
    --gold2: #FFD84D;
    --dark: #070B14;
    --dark2: #0D1526;
    --dark3: #111827;
    --card-bg: #0F1A2E;
    --border: rgba(245, 197, 24, 0.18);
    --text: #E8ECF4;
    --muted: #7A8BA8;
    --accent: #3B82F6;
    --green: #10B981;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(7, 11, 20, 0.88) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    color: var(--muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-nav {
    background: var(--gold);
    color: var(--dark) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--gold2);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
}

.badge-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* --- CORREÇÃO DO TÍTULO E RESPONSIVIDADE DO HERO --- */
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    /* Levemente ajustado para não quebrar em telas médias */
    font-weight: 800;
    line-height: 1.2;
    /* Espaço maior entre as linhas para não amontoar */
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

/* Regra para corrigir a sobreposição em telas de celular e tablet */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 32px !important;
        /* Logo levemente menor no celular para sobrar espaço */
    }

    .btn-nav {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .hero-section {
        padding-top: 140px;
        /* Garante que o menu fixo não cubra o título */
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img-stack {
        margin-top: 60px;
    }

    /* CRÍTICO: Empurra a imagem para baixo, separando do texto */
    .d-flex.flex-wrap {
        justify-content: center;
    }

    /* Centraliza os botões */
    .hero-img-float,
    .hero-img-float2 {
        transform: scale(0.8);
        /* Diminui as tags flutuantes para não saírem da tela no celular */
    }
}

/* -------------------------------------------------- */

.btn-hero-primary {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-hero-primary:hover {
    background: var(--gold2);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero image stack */
.hero-img-stack {
    position: relative;
}

.hero-img-main {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    /* Adicionado para corrigir comportamento do vídeo */
}

.hero-img-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.hero-img-float2 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.float-icon {
    font-size: 1.8rem;
}

.float-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.float-label {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ── URGENCY BAR ── */
.urgency-bar {
    background: linear-gradient(90deg, #7C2D12, #B91C1C, #7C2D12);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FEF2F2;
    position: relative;
    z-index: 10;
}

.urgency-bar strong {
    color: #FCA5A5;
}

#countdown {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: #FCA5A5;
    letter-spacing: 1px;
}

/* ── STATS ── */
.stats-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* ── SECTION STYLES ── */
.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.section-sub {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 1rem;
}

/* ── FEATURES ── */
.features-section {
    padding: 6rem 0;
    background: var(--dark);
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 197, 24, 0.35);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.feature-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── SOCIAL PROOF / PHOTOS ── */
.proof-section {
    padding: 6rem 0;
    background: var(--dark2);
}

.proof-img-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.proof-img-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    filter: brightness(0.85);
}

.proof-img-card:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

.proof-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 11, 20, 0.92));
    padding: 2rem 1.25rem 1.25rem;
}

.proof-img-label {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.proof-img-text {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-top: 2px;
}

/* Testimonial cards */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.author-course {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── CURSOS GRID ── */
.cursos-section {
    padding: 6rem 0;
    background: var(--dark);
}

.curso-pill {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: default;
}

.curso-pill:hover {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.05);
}

.curso-pill-icon {
    font-size: 1.3rem;
    min-width: 28px;
    text-align: center;
}

.curso-pill-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.curso-pill-area {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ── SLIDES PREVIEW ── */
.slides-section {
    padding: 6rem 0;
    background: var(--dark2);
}

.slide-preview-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;

    /* CRÍTICO: Define uma proporção de slide (16:9) */
    aspect-ratio: 16 / 9;

    /* Garante que o conteúdo interno use flexbox para empurrar o texto para baixo */
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Garante que a imagem de fundo preencha o espaço sem distorcer */
    background-size: cover !important;
    background-position: center !important;

    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.slide-preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.slide-preview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(245, 197, 24, 0.03));
}

.sp-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sp-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.sp-desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

.sp-bar {
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 8px;
}

.sp-dots {
    display: flex;
    gap: 4px;
}

.sp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.3);
}

.sp-dot.a {
    background: var(--gold);
}

/* ── PRICING ── */
.pricing-section {
    padding: 6rem 0;
    background: var(--dark);
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.pricing-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-header {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.12) 0%, rgba(245, 197, 24, 0.04) 100%);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
}

.pricing-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.pricing-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-value {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-value sup {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--muted);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 6px;
}

.pricing-body {
    padding: 2rem 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
    color: var(--text);
}

.pricing-feature .bi-check-circle-fill {
    color: var(--green);
    font-size: 1rem;
    min-width: 16px;
}

.btn-pricing {
    display: block;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 1.75rem;
    width: 100%;
}

.btn-pricing:hover {
    background: var(--gold2);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.35);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── FORM SECTION ── */
.form-section {
    padding: 6rem 0;
    background: var(--dark2);
}

.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 680px;
    margin: 0 auto;
}

.form-card .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.form-card .form-control,
.form-card .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: border 0.2s;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
    color: #fff;
}

.form-card .form-control::placeholder {
    color: #3A4A60;
}

.form-card .form-select option {
    background: var(--dark3);
    color: #fff;
}

.btn-form-submit {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-form-submit:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.3);
}

/* ── FAQ ── */
.faq-section {
    padding: 6rem 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--card-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg);
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background: rgba(245, 197, 24, 0.05) !important;
}

.accordion-body {
    background: var(--card-bg);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 1.5rem 1.25rem;
}

/* ── FOOTER ── */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo span {
    color: var(--gold);
}

.footer-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.8rem;
    color: #2A3A50;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* trust badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6EE7B7;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
}

/* ── MODAIS ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 11, 20, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content-custom {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.2rem;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.modal-header-custom {
    padding: 2rem 2rem 0;
    text-align: center;
}

.modal-icon-success {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--green);
}

.modal-icon-interest {
    width: 72px;
    height: 72px;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--gold);
}

.modal-title-custom {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-subtitle-custom {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-body-custom {
    padding: 1.5rem 2rem 2rem;
}

.form-modal .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

.form-modal .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: border 0.2s;
    width: 100%;
}

.form-modal .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
    color: #fff;
    outline: none;
}

.form-modal .form-control::placeholder {
    color: #3A4A60;
}

.form-modal textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-modal .recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.btn-modal-submit {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-modal-submit:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.35);
}

.btn-modal-submit:disabled {
    background: var(--muted);
    cursor: not-allowed;
    transform: none;
}

.alert-message {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.alert-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

.alert-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6EE7B7;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.spin { animation: spin 1s linear infinite; }

@media (max-width: 480px) {
    .modal-content-custom {
        margin: 1rem;
    }
    .modal-header-custom, .modal-body-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}