:root {
    --primary: #0059b3;
    --primary-dark: #003b6f;
    --secondary: #ffc107;
    --gradient: linear-gradient(135deg, #001f3f, #0059b3);
    --text-light: #f8f9fa;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
}

.hero-section {
    background: radial-gradient(circle at 10% 30%, #001f3f, #003366);
    position: relative;
}

.icon-glow {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
    transition: transform 0.3s;
}
.icon-glow:hover {
    transform: scale(1.1);
}

.feature-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15) !important;
}

.text-gradient {
    background: linear-gradient(45deg, #0059b3, #00a6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.service-card {
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.benefit-box {
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s;
    height: 100%;
}
.benefit-box:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-service {
    background: white;
    transition: all 0.3s ease;
}
.card-service:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    border: none;
    font-weight: 600;
}
.btn-primary:hover {
    background: linear-gradient(45deg, #002244, #004080);
    transform: scale(1.02);
}

/* Estilo para o header fixo */
.sticky-top {
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.95) !important;
}