@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #2979ff;
    --secondary-color: #050505;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--secondary-color);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
    position: relative;
}

/* ========================================================== */
/* BACKGROUND EFFECTS                                         */
/* ========================================================== */

.spotlight {
    position: fixed;
    inset: 0;
    opacity: 0.9; 
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Textura de grão sutil */
.grain-overlay {
    position: fixed;
    inset: 0;
    opacity: 0.02;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Formas flutuantes animadas */
.floating-shapes {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    filter: blur(60px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 10%;
    right: -10%;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--text-main);
    bottom: 20%;
    left: -5%;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: 50%;
    left: 30%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.main-wrapper {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================================== */
/* NAV FLUTUANTE (GLASSMORPISM)                               */
/* ========================================================== */

.header-minimal {
    padding: 30px 5%;
    display: flex;
    justify-content: center;
}

.nav-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 10px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
}

#temp-logo {
    height: 28px;
    width: auto;
    filter: brightness(1.2);
}

.links { display: flex; gap: 25px; align-items: center; }
.links span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.links span:hover { opacity: 1; color: var(--primary-color); }

.contact-trigger {
    background: var(--text-main);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

/* ========================================================== */
/* HERO SECTION                                               */
/* ========================================================== */

.hero-minimal {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5% 100px;
    position: relative;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
    position: relative;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
}

.eyebrow::before {
    left: -40px;
}

.eyebrow::after {
    right: -40px;
}

h1 {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -4px;
    margin-bottom: 30px;
    max-width: 1200px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), rgba(255,255,255,0.9));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

p {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 680px;
    margin: 0 auto 45px;
    line-height: 1.75;
    font-weight: 400;
}

.actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

/* Botão Principal com Efeito Glow */
.btn-main {
    padding: 22px 50px;
    background: var(--primary-color);
    border: none;
    color: #ffffff;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                0 0 40px var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-main:hover .btn-glow {
    transform: translateX(100%);
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
                0 0 60px var(--primary-color);
}

.btn-secondary {
    padding: 22px 40px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text-main);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 50px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

/* Animações de Reveal */
.reveal-text {
    opacity: 0;
    animation: revealUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================== */
/* MOBILE                                                     */
/* ========================================================== */

.menu-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-hamburger span { width: 20px; height: 2px; background: white; }

@media (max-width: 768px) {
    .links { display: none; }
    .menu-hamburger { display: flex; }
    .nav-glass { gap: 0; width: 100%; justify-content: space-between; }
    
    .scroll-indicator { display: none; }
    
    .eyebrow::before,
    .eyebrow::after { display: none; }
    
    h1 { font-size: 2.8rem; letter-spacing: -1px; }
    p { font-size: 1rem; }
    .hero-minimal { padding-bottom: 40px; }
    
    .actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-main,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 25px;
        padding: 25px 30px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .shape {
        display: none;
    }
}