/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    /* Colors */
    --color-bg: #050a14;
    --color-surface: #0f1626;
    --color-surface-light: #1a233a;
    
    --color-gold: #d4af37;
    --color-gold-light: #f5d061;
    --color-gold-dark: #b5952f;
    --color-gold-gradient: linear-gradient(135deg, #f5d061 0%, #d4af37 50%, #b5952f 100%);
    
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-heading: #ffffff;
    
    --color-border: rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    
    /* Radius & Shadows */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-hover: 0 8px 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: var(--color-bg);
    box-shadow: 0 4px 0 var(--color-gold-dark), 0 8px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    top: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--color-gold-dark), 0 12px 20px rgba(0, 0, 0, 0.5);
    color: #000;
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--color-gold-dark), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    margin-top: var(--space-md);
}

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

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1rem 0;
    transition: var(--transition-normal);
    will-change: background, box-shadow;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-gold);
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 180px 0 0px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at bottom right, var(--color-surface-light) 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.15), transparent 40%),
        radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.1), transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    z-index: 1;
    contain: strict;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-bottom: 100px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
}

.hero-image-frame {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) perspective(1000px) rotateX(5deg);
    transform-origin: bottom;
    width: 100%;
    height: 70%;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(5, 10, 20, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 -20px 60px rgba(212, 175, 55, 0.15),
        inset 0 4px 6px rgba(255, 255, 255, 0.2),
        inset 0 20px 50px rgba(212, 175, 55, 0.2);
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid rgba(212, 175, 55, 0.4);
    border-right: 2px solid rgba(212, 175, 55, 0.4);
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image:hover .hero-image-frame {
    transform: translateX(-50%) perspective(1000px) rotateX(0deg) scale(1.02);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(5, 10, 20, 0) 100%);
    box-shadow: 
        0 -30px 60px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.25),
        inset 0 20px 50px rgba(212, 175, 55, 0.15);
}

.hero-person {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 95%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 95%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* ==========================================================================
   Pilares Section
   ========================================================================== */
.pilares {
    padding: var(--space-xl) 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    contain: layout style;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
}

.section-subtitle-large {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--color-heading);
    margin-bottom: 1rem;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
}

.pilar-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}

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

.pilar-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.pilar-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-gold-light);
}

.pilar-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Soluções (Pricing Grid) Section
   ========================================================================== */
.solucoes {
    padding: var(--space-xl) 0;
    contain: layout style;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}

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

.pricing-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-header i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.pricing-header span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-body {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-desc {
    color: var(--color-gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-list {
    margin-bottom: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.feature-list li i {
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: #000;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-sponsor span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

.footer-sponsor img {
    height: 200px; /* Tamanho ampliado a pedido do usuário */
    margin-top: -65px; 
    margin-bottom: -65px; 
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.footer-sponsor img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideUpFade 1s 1.5s ease backwards;
}

.whatsapp-tooltip {
    background: var(--color-surface);
    color: var(--color-text);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-card);
    position: relative;
    max-width: 250px;
    text-align: right;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--color-surface);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-gold);
    border: 2px solid rgba(212, 175, 55, 0.5);
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
}

.whatsapp-btn:hover {
    background: var(--color-gold);
    color: #000;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-hover);
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (max-width: 992px) {
    .header {
        backdrop-filter: none; /* Remove blur pesado do header no mobile */
        -webkit-backdrop-filter: none;
        background: rgba(5, 10, 20, 0.97);
    }
    .hero-overlay {
        display: none; /* Remove grid overlay complexo no mobile */
    }
    .glow-effect::after {
        animation: none; /* Desabilita shimmer contínuo no mobile */
        display: none;
    }
    .hero {
        padding-top: 130px;
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        text-align: center;
        padding-bottom: 0;
    }
    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        min-height: 55vh; /* Reserva o espaço da imagem para matar o CLS (Layout Shift) */
        position: relative;
    }
    .hero-person {
        max-height: 55vh;
        width: 100%;
        object-fit: contain;
        animation: none; /* Desabilita animação float no mobile para performance */
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
        will-change: auto;
        aspect-ratio: 500 / 700;
    }
    .hero-image-frame {
        width: 95%;
        height: 65%;
        backdrop-filter: none; /* Remove blur pesado no mobile */
        -webkit-backdrop-filter: none;
        background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(5, 10, 20, 0) 100%);
    }
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .pilar-card:hover,
    .pricing-card:hover {
        transform: none; /* Remove hover transforms no mobile (touch devices) */
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    
    .whatsapp-tooltip {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .whatsapp-tooltip::after {
        right: 25px;
        top: 100%;
        transform: translateY(-5px) rotate(135deg);
    }

    .nav {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--color-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition-normal);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        margin: 1rem auto 0;
    }
    
    .footer-sponsor img {
        height: 180px;
        margin-top: -55px;
        margin-bottom: -55px;
    }
    
    .hero-image-frame {
        width: 100%;
        height: 60%;
    }
    
    .hero-person {
        max-height: 50vh;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   Form Styles (Application)
   ========================================================================== */
.application-form {
    background: var(--color-surface);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    margin: var(--space-xl) auto;
    max-width: 800px;
}

.form-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: var(--color-surface-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.radio-item, .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.radio-item:hover, .checkbox-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.radio-item input[type="radio"], .checkbox-item input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--color-gold);
    width: 1.2rem;
    height: 1.2rem;
}

.form-range {
    width: 100%;
    margin-top: 1rem;
    accent-color: var(--color-gold);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: var(--space-lg);
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}
