/* Refinamentos estilo Linear/Notion */
body {
    -webkit-font-smoothing: antialiased;
    background-color: #F8F9FC;
}

.hero-banner {
    background: linear-gradient(145deg, #0D47A1 0%, #0a2a66 100%);
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.card-hover {
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
}

.mobile-nav-open {
    display: block !important;
}