:root {
    /* Color Palette - Premium Dark, Gold & Wine */
    --bg-dark: #08080a;
    --bg-surface: #101014;
    --bg-surface-elevated: #18181f;
    --bg-surface-translucent: rgba(20, 20, 26, 0.75);
    --bg-card: rgba(24, 24, 32, 0.6);
    --bg-card-hover: rgba(30, 30, 42, 0.85);

    /* Text Colors */
    --text-main: #f5f5f7;
    --text-secondary: #c5c5d0;
    --text-muted: #888899;
    --text-dim: #5c5c6d;

    /* Accent & Brand Colors */
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8522;
    --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa8522 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);
    
    --wine: #800020;
    --wine-light: #a31535;
    --wine-dark: #500014;
    --wine-gradient: linear-gradient(135deg, #a31535 0%, #800020 60%, #4a0012 100%);
    --wine-glow: rgba(128, 0, 32, 0.4);

    /* Borders & Lines */
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-card: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-gold-bright: rgba(212, 175, 55, 0.7);

    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
    --shadow-wine: 0 0 30px rgba(128, 0, 32, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
}

/* Reset & Base Setup */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Selection & Scrollbar */
::selection {
    background-color: var(--gold);
    color: #000000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #252530;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

strong {
    color: #ffffff;
    font-weight: 700;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Base Icon Sizing to Prevent Layout Shifts (CLS) */
i[data-lucide],
.lucide {
    display: inline-block;
    vertical-align: middle;
    width: 1.1em;
    height: 1.1em;
    min-width: 1.1em;
    min-height: 1.1em;
    flex-shrink: 0;
}

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

/* Section Header Styling */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0d0d11;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
    filter: brightness(1.08);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(30deg) translateX(-100%);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { transform: rotate(30deg) translateX(-100%); }
    20%, 100% { transform: rotate(30deg) translateX(100%); }
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-gold-solid {
    background: var(--gold);
    color: #000;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-gold);
}

.btn-gold-solid:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Sticky Urgency Top Banner (1º Lote)
   ========================================================================== */
.sticky-top-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: linear-gradient(90deg, #38000d 0%, #68051a 22%, #940c2b 50%, #68051a 78%, #38000d 100%);
    background-size: 200% 100%;
    animation: bannerGradientFlow 8s ease-in-out infinite;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55), 0 0 25px rgba(163, 21, 53, 0.35);
    padding: 10px 0;
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.35;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@keyframes bannerGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.banner-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(245, 215, 127, 0.55);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f5d77f;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
    white-space: nowrap;
}

.banner-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 8px #ff3b30, 0 0 14px rgba(255, 59, 48, 0.8);
    animation: bannerDotPulse 1.4s infinite ease-in-out;
}

@keyframes bannerDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.45; }
}

.banner-badge i {
    width: 13px;
    height: 13px;
    color: #ff9500;
}

.banner-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #f5f5fa;
    margin: 0;
}

.banner-lote {
    font-weight: 600;
    color: #ffffff;
}

.banner-separator {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.banner-price {
    font-weight: 800;
    color: #f5d77f;
    font-size: 1rem;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
    letter-spacing: 0.02em;
}

.banner-arrow {
    color: #f5d77f;
    font-weight: 700;
    font-size: 1rem;
}

.banner-discount {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #4ade80;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.25);
}

.banner-discount strong {
    color: #86efac;
    font-weight: 800;
}

.banner-deadline {
    color: #eaeaf4;
}

.banner-deadline strong {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.7);
    text-underline-offset: 3px;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: #08080a;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.45);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.banner-cta:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.7);
    filter: brightness(1.1);
    color: #000000;
}

.banner-cta i {
    width: 13px;
    height: 13px;
    transition: transform var(--transition-fast);
}

.banner-cta:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 22px 0;
    margin-bottom: -92px;
    background: transparent;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.logo-img {
    height: 48px;
    width: auto;
    aspect-ratio: 220 / 50;
    max-height: 52px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-fast);
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 52px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px !important;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    color: var(--gold-light) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta i {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

/* Mobile Menu Fullscreen */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.mobile-nav-links .mobile-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mobile-nav-links .mobile-link:hover {
    color: var(--gold);
}

.mobile-nav-links .mobile-cta {
    margin-top: 15px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.7) 0%, rgba(8, 8, 10, 0.85) 60%, #08080a 100%),
                url('assets/inicial.webp') no-repeat center top / cover;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
}

.orb-1 {
    top: 10%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.35) 0%, transparent 70%);
}

.orb-2 {
    top: 25%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

.orb-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.2) 0%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(128, 0, 32, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(128, 0, 32, 0.3);
}

.hero-badge i {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3344;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3344;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto 36px;
}

/* Countdown Card */
.countdown-card {
    background: var(--bg-surface-translucent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: var(--shadow-md), 0 0 30px rgba(212, 175, 55, 0.1);
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.countdown-header i {
    width: 16px;
    height: 16px;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 12px 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.countdown-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.countdown-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 6px;
}

.countdown-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: -12px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-item i {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
    margin-top: 80px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(16, 16, 22, 0.85);
    backdrop-filter: blur(12px);
    padding: 36px 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.stat-icon i {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   Problem / Dor que resolve Section
   ========================================================================== */
.problem-section {
    background-color: var(--bg-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--wine-gradient);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 3;
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(128, 0, 32, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-wine);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-img-wrap {
    width: 100%;
    aspect-ratio: 2 / 1;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.problem-card:hover .problem-img {
    transform: scale(1.05);
}

.problem-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-card h3,
.problem-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.problem-card p,
.problem-body p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Problem Testimonial Box */
.problem-testimonial-card {
    max-width: 840px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, rgba(24, 24, 32, 0.96) 0%, rgba(32, 22, 28, 0.94) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.12);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.problem-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 45px rgba(212, 175, 55, 0.22);
    border-color: var(--border-gold-bright);
}

.problem-testimonial-avatar {
    flex-shrink: 0;
}

.problem-testimonial-avatar img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 2.5px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
    display: block;
}

.problem-testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.problem-testimonial-quote-icon {
    width: 22px;
    height: 22px;
    color: var(--gold);
    opacity: 0.85;
}

.problem-testimonial-quote-icon i {
    width: 100%;
    height: 100%;
}

.problem-testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    line-height: 1.45;
    margin: 0;
}

.problem-testimonial-author {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}

.problem-testimonial-author strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* Solution Banner */
.solution-banner {
    background: linear-gradient(135deg, rgba(24, 24, 32, 0.9) 0%, rgba(35, 20, 26, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.15);
}

.solution-content {
    max-width: 700px;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.solution-badge i {
    width: 16px;
    height: 16px;
}

.solution-content h3 {
    font-size: 1.85rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.solution-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Pillars Section
   ========================================================================== */
.pillars-section {
    background: radial-gradient(circle at 50% 50%, #121218 0%, #08080a 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}

.pillar-img-wrap {
    width: 100%;
    aspect-ratio: 2 / 3;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transition: transform var(--transition-base);
}

.pillar-card:hover .pillar-img {
    transform: scale(1.05);
}

.pillar-body {
    padding: 20px 18px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pillar-card h3,
.pillar-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.3;
}

.pillar-card p,
.pillar-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   Speaker Section (Profª Gleice)
   ========================================================================== */
.speaker-section {
    background: var(--bg-dark);
}

.speaker-card {
    background: linear-gradient(135deg, rgba(20, 20, 28, 0.95) 0%, rgba(30, 18, 24, 0.95) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(128, 0, 32, 0.2);
}

.speaker-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.speaker-avatar-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    padding: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--wine) 100%);
    box-shadow: var(--shadow-md);
}

.speaker-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-md) - 4px);
    background: #14141c;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform var(--transition-base);
}

.speaker-avatar-frame:hover .speaker-avatar-img {
    transform: scale(1.03);
}

.speaker-avatar-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    text-align: center;
    padding: 20px;
}

.speaker-avatar-placeholder i {
    width: 72px;
    height: 72px;
    opacity: 0.85;
}

.speaker-avatar-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.speaker-badge-floating {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 16, 22, 0.95);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.speaker-badge-floating i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.speaker-badge-floating span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light);
}

.speaker-content {
    display: flex;
    flex-direction: column;
}

.speaker-name {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.speaker-bio {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0;
}

.speaker-bio p {
    margin-bottom: 16px;
}

.speaker-bio p:last-child {
    margin-bottom: 0;
}

.speaker-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.speaker-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.speaker-highlight-item i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.speaker-quote {
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid var(--gold);
    padding: 18px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.speaker-quote i {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.7;
}

.speaker-quote p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* ==========================================================================
   Target Audience Section
   ========================================================================== */
.audience-section {
    background: radial-gradient(circle at 50% 30%, #161622 0%, #08080a 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.audience-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}

.audience-img-wrap {
    width: 100%;
    aspect-ratio: 2 / 1;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.audience-card:hover .audience-img {
    transform: scale(1.05);
}

.audience-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.audience-card h3,
.audience-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.audience-card p,
.audience-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.audience-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Secretary Tribute Box */
.secretary-tribute-box {
    background: linear-gradient(135deg, rgba(40, 15, 25, 0.9) 0%, rgba(20, 15, 30, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: var(--shadow-lg);
}

.secretary-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wine-gradient);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(128, 0, 32, 0.6);
}

.secretary-icon-wrap i {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.secretary-text {
    flex-grow: 1;
}

.gold-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.secretary-text h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.secretary-text p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Schedule / Program Timeline
   ========================================================================== */
.schedule-section {
    background: var(--bg-dark);
}

.timeline-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--wine) 50%, var(--gold) 100%);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
}

.timeline-dot {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14141c;
    border: 2px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    margin-left: 18px;
}

.timeline-dot i {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.timeline-time-badge {
    position: absolute;
    left: 80px;
    top: -12px;
    background: var(--wine-gradient);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px 30px;
    flex-grow: 1;
    margin-top: 14px;
    transition: all var(--transition-base);
}

.timeline-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateX(6px);
}

.timeline-card-module {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.finish-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(35, 15, 25, 0.9) 100%);
    border-color: var(--border-gold);
}

/* ==========================================================================
   Materials Included Section
   ========================================================================== */
.materials-section {
    background: radial-gradient(circle at 50% 50%, #12121a 0%, #08080a 100%);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.material-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.material-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.material-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.material-icon i {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.material-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.material-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.material-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2ed573;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.material-check i {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-testimonial-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.video-testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold), 0 10px 30px rgba(0, 0, 0, 0.7);
    background: var(--bg-card-hover);
}

.video-testimonial-card:hover .caption-quote-icon {
    color: var(--gold-light);
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

.video-testimonial-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: calc(var(--radius-md) - 4px);
    overflow: hidden;
    background: #000;
}

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

.video-testimonial-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 4px 4px;
}

.video-testimonial-header {
    margin-bottom: 12px;
}

.video-testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 3px;
}

.video-testimonial-role {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1.35;
    margin-bottom: 3px;
}

.video-testimonial-city {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.video-testimonial-city i {
    width: 13px;
    height: 13px;
    color: var(--gold);
    opacity: 0.8;
    flex-shrink: 0;
}

.video-testimonial-caption {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.video-testimonial-caption .caption-quote-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.9;
    transition: color var(--transition-fast), filter var(--transition-fast);
}

.video-testimonial-caption p {
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-secondary);
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* ==========================================================================
   Pricing & Offer Section
   ========================================================================== */
.pricing-section {
    background: radial-gradient(circle at 50% 20%, #161624 0%, #08080a 80%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card.highlight {
    background: linear-gradient(180deg, rgba(28, 24, 34, 0.95) 0%, rgba(20, 18, 26, 0.95) 100%);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.25);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wine-gradient);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 15px rgba(128, 0, 32, 0.5);
    white-space: nowrap;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tier-name {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #ffffff;
}

.tier-deadline {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 4px;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
}

.pricing-price .cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.payment-terms {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.pricing-features li i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.disabled-card {
    opacity: 0.65;
}

.disabled-card .pricing-price .amount {
    color: var(--text-secondary);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.secure-badge i {
    width: 14px;
    height: 14px;
    color: #2ed573;
}

/* Order Bump Card */
.order-bump-card {
    background: linear-gradient(135deg, rgba(30, 25, 20, 0.8) 0%, rgba(20, 18, 22, 0.8) 100%);
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.order-bump-badge {
    position: absolute;
    top: -13px;
    left: 40px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.order-bump-badge i {
    width: 14px;
    height: 14px;
}

.order-bump-content {
    display: flex;
    gap: 36px;
    align-items: center;
}

.order-bump-image {
    flex-shrink: 0;
}

.order-bump-book-img {
    width: 140px;
    height: auto;
    max-height: 190px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
    transition: transform var(--transition-base);
}

.order-bump-card:hover .order-bump-book-img {
    transform: scale(1.04);
}

.order-bump-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.order-bump-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
}

.order-bump-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.order-bump-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bump-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bump-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
}

.free-shipping {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2ed573;
    font-size: 0.85rem;
    font-weight: 700;
}

.free-shipping i {
    width: 16px;
    height: 16px;
}

.order-bump-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: var(--bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   Final CTA Banner Section
   ========================================================================== */
.final-cta-section {
    background: radial-gradient(circle at 50% 50%, #1c1420 0%, #08080a 100%);
    padding: 120px 0;
}

.final-cta-card {
    background: linear-gradient(135deg, rgba(30, 20, 35, 0.95) 0%, rgba(20, 20, 28, 0.95) 100%);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.2);
}

.final-cta-card h2 {
    font-size: 2.8rem;
    margin: 16px 0 16px;
    color: #ffffff;
}

.final-cta-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 36px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #050507;
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 420px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group h4,
.footer-links-group .footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-links-group a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .sticky-top-banner {
        padding: 9px 0;
        font-size: 0.84rem;
    }
    .banner-container {
        gap: 12px;
    }
    .banner-price {
        font-size: 0.94rem;
    }
    .banner-discount {
        font-size: 0.82rem;
    }

    .hero-title { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item:nth-child(2) { border-right: none; }
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .speaker-card { grid-template-columns: 1fr; gap: 40px; }
    .speaker-visual { max-width: 320px; margin: 0 auto; }
    .testimonials-video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
        margin-bottom: -72px;
    }

    .sticky-top-banner {
        padding: 8px 0;
    }
    .banner-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        padding: 0 14px;
    }
    .banner-content {
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
        flex: 1;
        min-width: 0;
    }
    .banner-badge {
        font-size: 0.68rem;
        padding: 2px 7px;
    }
    .banner-text {
        font-size: 0.78rem;
        flex-wrap: wrap;
        gap: 4px;
        line-height: 1.25;
    }
    .banner-price {
        font-size: 0.88rem;
    }
    .banner-discount {
        font-size: 0.76rem;
        padding: 1px 6px;
    }
    .banner-cta {
        font-size: 0.72rem;
        padding: 5px 12px;
        gap: 4px;
    }

    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-section { padding: 105px 0 60px; }
    .hero-title { font-size: 2.3rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .countdown-card { padding: 18px; }
    .countdown-num { font-size: 1.6rem; }
    .countdown-box { min-width: 60px; padding: 8px 6px; }

    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-bottom: 14px; }
    .stat-item:last-child { border-bottom: none; }

    .problem-grid { grid-template-columns: 1fr; }
    .problem-testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
        gap: 16px;
        margin-bottom: 40px;
    }
    .problem-testimonial-text {
        font-size: 1.1rem;
    }
    .problem-testimonial-quote-icon {
        margin: 0 auto;
    }
    .solution-banner { flex-direction: column; text-align: center; padding: 32px 24px; }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pillar-card {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .pillar-body {
        padding: 20px 18px 24px;
    }

    .pillar-body h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .pillar-body p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .speaker-card { padding: 32px 20px; }
    .speaker-name { font-size: 2.2rem; }
    .speaker-highlights { grid-template-columns: 1fr; }

    .audience-grid { grid-template-columns: 1fr; }
    .secretary-tribute-box { flex-direction: column; text-align: center; padding: 32px 20px; }

    .materials-grid { grid-template-columns: 1fr; }
    .testimonials-video-grid { grid-template-columns: 1fr; gap: 20px; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.highlight { transform: none; }

    .order-bump-content { flex-direction: column; text-align: center; }
    .order-bump-price-row { justify-content: center; }

    .final-cta-card { padding: 40px 24px; }
    .final-cta-card h2 { font-size: 2rem; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 520px) {
    .banner-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 0 10px;
    }
    .banner-content {
        justify-content: center;
        width: 100%;
    }
    .banner-text {
        justify-content: center;
        text-align: center;
    }
    .banner-cta {
        width: 100%;
        max-width: 240px;
        justify-content: center;
        padding: 6px 14px;
        font-size: 0.74rem;
    }
    .hero-section {
        padding: 95px 0 50px;
    }
}

/* ==========================================================================
   WhatsApp Floating Widget & Modal
   ========================================================================== */
.whatsapp-float-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
    display: block;
}

.whatsapp-float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.7);
    animation: wppPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes wppPulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Modal Backdrop */
.whatsapp-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal-dialog {
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 211, 102, 0.15);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 36px 32px;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-modal-backdrop.active .whatsapp-modal-dialog {
    transform: scale(1) translateY(0);
}

.whatsapp-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.whatsapp-modal-close:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.whatsapp-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.whatsapp-header-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal-header h3 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 8px;
}

.whatsapp-modal-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.whatsapp-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.whatsapp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.whatsapp-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.whatsapp-form-group input {
    background: rgba(10, 10, 14, 0.8);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #ffffff;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-form-group input:focus {
    border-color: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-form-group input::placeholder {
    color: var(--text-dim);
}

.btn-whatsapp-submit {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    margin-top: 6px;
}

.btn-whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-btn {
        width: 54px;
        height: 54px;
    }
    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-modal-dialog {
        padding: 28px 22px;
    }
}

/* ==========================================================================
   Checkout Lead Form Modal
   ========================================================================== */
.checkout-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-dialog {
    background: linear-gradient(180deg, #181520 0%, #100e16 100%);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold), 0 25px 70px rgba(0, 0, 0, 0.9);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 38px 34px;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal-backdrop.active .checkout-modal-dialog {
    transform: scale(1) translateY(0);
}

.checkout-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.checkout-modal-close:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.checkout-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.checkout-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.checkout-badge-top i {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.checkout-modal-header h3 {
    font-size: 1.45rem;
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.checkout-modal-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.checkout-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.checkout-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.checkout-form-group input {
    background: rgba(8, 8, 12, 0.9);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #ffffff;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

.checkout-form-group input::placeholder {
    color: var(--text-dim);
}

.checkout-summary-mini {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-top: 4px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.summary-price {
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 800;
}

.btn-checkout-submit {
    padding: 16px 20px;
    font-size: 1.05rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout-submit i {
    width: 18px;
    height: 18px;
}

.checkout-security-footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 10px;
    flex-wrap: wrap;
}

.checkout-security-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.checkout-security-footer i {
    width: 13px;
    height: 13px;
    color: #2ed573;
}

@media (max-width: 768px) {
    .checkout-modal-dialog {
        padding: 30px 20px;
    }
    .checkout-modal-header h3 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Thank You Page (Página de Obrigado) Styles
   ========================================================================== */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.thankyou-navbar {
    padding: 24px 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.thankyou-hero {
    flex: 1;
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.thankyou-card-main {
    background: var(--bg-surface-translucent);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.thankyou-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.thankyou-success-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 213, 115, 0.2) 0%, rgba(46, 213, 115, 0.05) 70%);
    border: 2px solid #2ed573;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ed573;
    box-shadow: 0 0 30px rgba(46, 213, 115, 0.35);
    animation: pulseSuccess 2.5s infinite;
}

.thankyou-success-icon i {
    width: 44px;
    height: 44px;
}

@keyframes pulseSuccess {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(46, 213, 115, 0.3);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 40px rgba(46, 213, 115, 0.55);
    }
}

.thankyou-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(46, 213, 115, 0.12);
    border: 1px solid rgba(46, 213, 115, 0.35);
    border-radius: var(--radius-pill);
    color: #2ed573;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.thankyou-badge i {
    width: 16px;
    height: 16px;
}

.thankyou-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thankyou-notice-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(128, 0, 32, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 28px 0 36px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.thankyou-notice-box .notice-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #08080a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.thankyou-notice-box .notice-icon i {
    width: 22px;
    height: 22px;
}

.thankyou-notice-box .notice-text {
    font-size: 1.12rem;
    color: #ffffff;
    line-height: 1.6;
}

.thankyou-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
    text-align: left;
}

.thankyou-channel-card {
    background: rgba(16, 16, 20, 0.8);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.thankyou-channel-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
}

.channel-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.channel-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-email .channel-card-icon {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.channel-whatsapp .channel-card-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.channel-card-icon i,
.channel-card-icon svg {
    width: 22px;
    height: 22px;
}

.channel-card-header h4,
.channel-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.channel-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.thankyou-event-summary {
    background: rgba(8, 8, 10, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 36px;
}

.event-summary-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.event-summary-title i {
    width: 18px;
    height: 18px;
}

.event-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.event-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.event-info-item i {
    width: 20px;
    height: 20px;
    color: var(--gold);
    margin-bottom: 4px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.thankyou-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thankyou-actions .btn {
    padding: 14px 26px;
    font-size: 0.92rem;
}

.btn-calendar {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-calendar:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-whatsapp-support {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-support:hover {
    background: #25d366;
    color: #08080a;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.thankyou-footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    background: #060608;
    color: var(--text-dim);
    font-size: 0.85rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 860px) {
    .thankyou-title {
        font-size: 2rem;
    }
    .thankyou-card-main {
        padding: 36px 20px;
    }
    .thankyou-channels-grid {
        grid-template-columns: 1fr;
    }
    .event-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .thankyou-title {
        font-size: 1.65rem;
    }
    .thankyou-notice-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .event-summary-grid {
        grid-template-columns: 1fr;
    }
    .thankyou-actions {
        flex-direction: column;
        width: 100%;
    }
    .thankyou-actions .btn {
        width: 100%;
    }
}
