:root {
    --primary-navy: #171A4A;
    --secondary-blue: #2E3070;
    --accent-gold: #D4A843;
    --accent-cyan: #00C2FF;
    --light-bg: #F8F9FC;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* Texto Justificado */
p, li, .legal-content { text-align: justify; }

/* Centralizar títulos e subtítulos de seção */
.section-title, .section-subtitle, .hero-subtitle { text-align: center; }

.lead { font-weight: 400; font-size: 1.1rem; }

/* Utility Classes */
.text-navy { color: var(--primary-navy) !important; }
.text-gold { color: var(--accent-gold) !important; }
.bg-navy { background-color: var(--primary-navy) !important; }
.bg-gold { background-color: var(--accent-gold) !important; }

/* Navbar */
.navbar {
    background-color: rgba(23, 26, 74, 0.98) !important;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar-brand img { height: 45px; }
.nav-link { 
    color: rgba(255,255,255,0.9) !important; 
    font-weight: 700 !important;
    font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 10px 15px !important; 
}
.nav-link:hover, .nav-link.active { color: var(--accent-gold) !important; }

/* Language Selector */
.lang-dropdown .btn { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.85rem; padding: 5px 10px; }
.lang-dropdown .btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.lang-dropdown .dropdown-menu { background: var(--primary-navy); border: 1px solid rgba(255,255,255,0.1); }
.lang-dropdown .dropdown-item { color: #fff; font-size: 0.85rem; }
.lang-dropdown .dropdown-item:hover { background: rgba(255,255,255,0.1); }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #B8922F);
    border: none; color: var(--primary-navy);
    font-weight: 700; padding: 14px 35px;
    border-radius: 50px; text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
    transition: all 0.3s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 168, 67, 0.5); color: var(--primary-navy); }

.btn-outline-navy {
    background: transparent; border: 2px solid var(--primary-navy);
    color: var(--primary-navy); font-weight: 600;
    border-radius: 50px; padding: 12px 30px;
}
.btn-outline-navy:hover { background: var(--primary-navy); color: var(--white); }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1642 100%);
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 194, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(46, 48, 112, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(212, 168, 67, 0.05) 0%, transparent 30%);
    animation: rotateCircles 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateCircles {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title { font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; }
.hero-title span.text-gold { position: relative; display: inline-block; }
.hero-title span.text-gold::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.hero-subtitle { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Hero Image Round */
.hero-img-container { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img {
    width: 400px; height: 400px; object-fit: cover;
    border-radius: 50%; border: 8px solid rgba(212, 168, 67, 0.3);
    box-shadow: 0 0 50px rgba(0, 194, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Sections */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--primary-navy); margin-bottom: 1rem; }
.section-subtitle { color: #666; font-size: 1.1rem; margin-bottom: 3rem; }

/* Cards Tech */
.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px; padding: 40px 30px;
    text-align: center; transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.value-card:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); transform: translateY(-10px); }
.value-icon {
    width: 80px; height: 80px; background: rgba(212, 168, 67, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 2rem; color: var(--accent-gold);
    border: 1px solid rgba(212, 168, 67, 0.3);
}

/* Plan Cards */
.plan-card { border-radius: 15px; overflow: hidden; transition: transform 0.3s; }
.plan-card:hover { transform: translateY(-10px); }
.plan-header { padding: 30px; }
.plan-body { padding: 30px; }
.plan-price { font-size: 2.5rem; font-weight: 800; }
.plan-features { list-style: none; padding: 0; text-align: left; }
.plan-features li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 0.95rem; }
.plan-features li:last-child { border-bottom: none; }
.plan-features i { color: var(--accent-gold); margin-right: 8px; }

/* Team Section */
.team-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent-gold); margin-bottom: 20px; }

/* Footer */
.footer { background: var(--primary-navy); color: var(--white); padding: 80px 0 40px; position: relative; }
.footer-title { color: var(--accent-gold); font-weight: 700; margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent-cyan); padding-left: 5px; }

/* Cookie Banner */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(23, 26, 74, 0.98); color: white;
    padding: 20px 0; z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3); display: none;
}
#cookie-banner .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
#cookie-banner p { margin: 0; color: #ccc; font-size: 0.9rem; flex: 1 0 300px; margin-bottom: 10px; }
#cookie-banner a { color: var(--accent-gold); }

/* Country Popup */
#country-popup {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
}
.country-modal {
    background: white; padding: 40px; border-radius: 15px;
    text-align: center; max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.country-btn { display: block; width: 100%; margin-bottom: 10px; padding: 15px; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-img { width: 280px; height: 280px; }
    .navbar-collapse { background: var(--primary-navy); padding: 20px; margin-top: 10px; border-radius: 10px; }
}
