/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A1128;
    --secondary: #1C3B70;
    --accent: #F5B041;
    --accent-dark: #D4882F;
    --text-light: #F8F9FA;
    --text-muted: #ADB5BD;
    --font-main: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #fff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    background: rgba(10, 17, 40, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 176, 65, 0.2);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}
.logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}
.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===== MAIN CONTENT ===== */
main {
    flex: 1;
    padding: 40px 0 60px;
}

/* ===== HERO / SECTIONS ===== */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero h1 span {
    color: var(--accent);
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: rgba(28, 59, 112, 0.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 176, 65, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card i {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 12px;
}
.card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== COMPANY DATA TABLE ===== */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    background: rgba(0,0,0,0.3);
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    margin: 30px 0;
}
.data-item {
    display: flex;
    flex-direction: column;
}
.data-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.data-item .value {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

/* ===== HOLD BUTTON ===== */
.hold-wrapper {
    text-align: center;
    margin: 48px 0 20px;
}
.hold-instruction {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}
.hold-instruction i {
    color: var(--accent);
    margin-right: 8px;
}

.hold-btn {
    position: relative;
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(245, 176, 65, 0.3);
    min-width: 240px;
    user-select: none;
}
.hold-btn:active {
    transform: scale(0.97);
}
.hold-btn .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #fff;
    transition: width 0.08s linear;
    border-radius: 0 0 60px 60px;
}
.hold-btn .btn-text {
    position: relative;
    z-index: 2;
}
.hold-btn .btn-icon {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

/* Border animation (glow) */
.hold-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    padding: 2px;
    background: conic-gradient(from 0deg, transparent, var(--accent), transparent 30%, transparent 70%, var(--accent), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.hold-btn.is-holding::before {
    opacity: 1;
    animation: spin-border 1.2s linear infinite;
}
@keyframes spin-border {
    to { transform: rotate(360deg); }
}

/* ===== FOOTER ===== */
footer {
    background: #050B1A;
    border-top: 1px solid rgba(245, 176, 65, 0.15);
    padding: 40px 0 20px;
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.footer-brand .cnpj {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-contact p {
    margin: 4px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.footer-contact i {
    color: var(--accent);
    width: 20px;
}
.footer-links h4 {
    margin-bottom: 12px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin: 6px 0;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== LEGAL PAGES (termos, politica) ===== */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}
.legal-content h2 {
    margin-top: 32px;
    color: var(--accent);
}
.legal-content p, .legal-content li {
    color: var(--text-muted);
}
.legal-content ul {
    padding-left: 24px;
    margin: 12px 0;
}
.legal-content li {
    margin: 6px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .grid-2col { grid-template-columns: 1fr; }
    .grid-3col { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--accent);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .mobile-menu-btn {
        display: block;
    }
    .grid-3col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .hold-btn { min-width: 100%; padding: 16px 24px; }
}