@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
    --primary: #00091b;
    --secondary: #a63500;
    --tertiary: #00081c;
    --background: #faf9fd;
    --surface: #faf9fd;
    --on-surface: #1a1b1e;
    --on-primary-container: #7089b4;
    --secondary-fixed: #ffdbcf;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f4f3f7;
    --on-surface-variant: #44474e;
    --accent: #7dd3fc;
    --cta-blue: #002046;
}

body {
    background-color: var(--background);
    color: var(--on-surface);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Custom Gradients */
.kinetic-gradient {
    background: radial-gradient(circle at center, #002046 0%, #00091b 100%);
}

/* Navbar */
.glass-nav {
    background-color: rgba(250, 249, 253, 0.7) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.nav-link {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary) !important;
}

.nav-link.active {
    border: none;
    color: var(--secondary) !important;
}

/* Header Button Refined */
.btn-header {
    background-color: var(--accent);
    color: white !important;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--accent);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-header:hover {
    background-color: transparent !important;
    color: var(--accent) !important; /* Keep letter in its own blue (accent) */
    border-color: var(--accent) !important; /* Show it's there */
}

/* Hero Section */
.hero-label {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-fixed);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
}

.hero-title {
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 400 !important; /* Thinner font weight */
}

.hero-title span {
    color: var(--secondary);
}

.hero-description {
    color: var(--on-primary-container);
    font-weight: 500;
}

/* Special Hero Button Hover (Consistent) */
.btn-fale-especialista {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--accent);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-fale-especialista:hover {
    background-color: transparent !important;
    color: white !important;
    border-color: var(--accent) !important;
}

/* Cards & Sections */
.section-title {
    color: var(--primary);
    letter-spacing: -0.01em;
}

.section-title span {
    color: var(--secondary);
}

.bento-card {
    background-color: var(--primary);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.service-card {
    background-color: var(--surface-container-lowest);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    border-left: 4px solid var(--secondary);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* CTA Button Refined to match interactions */
.btn-cta-premium {
    background-color: var(--cta-blue);
    color: white;
    font-weight: 800;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--cta-blue);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.btn-cta-premium:hover {
    background-color: transparent !important;
    color: var(--accent) !important; /* Texto com a cor do ativo */
    border-color: var(--accent) !important; /* Borda da cor do ativo */
}

/* Footer Styling */
footer {
    background-color: var(--primary) !important;
}

.footer-branding {
    color: white !important;
    font-weight: 300;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white !important;
}

.footer-icon {
    color: white !important;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 10vw;
    }
}
