:root {
    --primary: #0066FF; /* Azul Elétrico */
    --primary-dark: #0044CC;
    --dark-bg: #0A0F1E;
    --dark-card: rgba(15, 23, 42, 0.7);
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

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

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.blue-text { color: var(--primary); }
.logo span { font-family: inherit; }

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-white); }

.btn-catalog {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: transform 0.3s !important;
}

.btn-catalog:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 15, 30, 0.9), rgba(10, 15, 30, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight { color: var(--primary); }

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-header {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Market Data Section */
.market-data {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--dark-bg), #0F172A);
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 8rem 0 12rem 0;
}

.grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.sub-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.features {
    list-style: none;
}

.features li {
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-gray);
}

.features li strong {
    color: var(--text-white);
}

.features li span {
    color: var(--primary);
    font-weight: 800;
    margin-top: 4px;
}

.glass-card {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary);
}

.stat p {
    color: var(--text-gray);
    font-weight: 600;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Footer */
.glass-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.02);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* WhatsApp Float */
.wpp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.wpp-float:hover { transform: scale(1.1); }
.wpp-float img { width: 35px; }

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .logo { font-size: 1.1rem; }
    .logo-img { height: 35px; }
    .btn-header { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
}
