:root {
    --primary: #26d5df; /* O ciano da arte 3D */
    --primary-hover: #1cb5be;
    --secondary: #071a2b; /* Azul bem escuro do fundo */
    --secondary-light: #0d2b45;
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    --bg-main: #ffffff;
    --bg-soft: #f8f9fa;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================
   CABEÇALHO (NAVBAR)
   ========================================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-brand img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

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

.logo-text-main {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-text-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-links > a, .nav-item > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links > a:hover, .nav-item > a:hover {
    color: var(--primary);
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 213, 223, 0.3);
}

/* Dropdowns */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(7, 26, 43, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
}

.dropdown a:hover {
    background: rgba(38, 213, 223, 0.1);
    color: var(--primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 150px;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(7, 26, 43, 0.9) 0%, rgba(7, 26, 43, 0.7) 40%, rgba(7, 26, 43, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 0;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    font-size: 24px;
    color: var(--primary);
}

.trust-badge-text strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.trust-badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* =========================================
   FEATURES (CARDS BRANCOS)
   ========================================= */
.features-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.feature-card:last-child {
    border-right: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
}

.feature-card h3 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.feature-card p {
    color: #646473;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
    background: var(--secondary-light);
    padding: 40px 0;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-icon {
    font-size: 32px;
    color: var(--primary);
}

.stat-text strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--secondary);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-item {
        border-right: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
