@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ─────────────────────────────────────────
   VARIÁVEIS
───────────────────────────────────────── */
:root {
    --preto:   #0a0a0a;
    --grafite: #111111;
    --laranja: #FF5C00;
    --ouro:    #C9A84C;
    --branco:  #F5F0E8;
    --cinza:   #888888;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: var(--preto);
    color: var(--branco);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* ─────────────────────────────────────────
   CURSOR
───────────────────────────────────────── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--laranja);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.2s ease, opacity 0.2s;
    opacity: 0;
}

.cursor-anel {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 92, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s;
    opacity: 0;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(rgba(10, 10, 10, 0.95), transparent);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--branco);
    text-decoration: none;
}

.nav-logo span { color: var(--laranja); }

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover { color: var(--laranja); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-esquerda {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-numero {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 18vw, 18rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 92, 0, 0.2);
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-60%);
    z-index: 0;
    user-select: none;
}

.hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--laranja);
}

.hero-nome {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--branco);
    position: relative;
    z-index: 2;
}

.hero-nome .destaque { color: var(--laranja); }

.hero-posicao {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ouro);
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.hero-bio {
    max-width: 380px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.55);
    margin-top: 1.5rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    padding: 0.9rem 2rem;
    background: var(--laranja);
    color: var(--preto);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.hero-cta:hover {
    background: var(--ouro);
    gap: 1.2rem;
}

.hero-direita {
    position: relative;
    overflow: hidden;
}

.hero-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(20%) contrast(1.05);
}

.hero-foto-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(245, 240, 232, 0.15);
}

.hero-foto-placeholder svg {
    width: 80px;
    opacity: 0.2;
}

.hero-foto-placeholder p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--preto) 0%, transparent 40%),
        linear-gradient(to top, var(--preto) 0%, transparent 30%);
}

.hero-linha {
    position: absolute;
    top: 0; bottom: 0;
    left: -1px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--laranja) 40%, var(--ouro) 60%, transparent);
}

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stats {
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
    padding: 2.5rem 2rem;
    background: var(--preto);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.stat:hover { background: #111; }

.stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--laranja);
    transition: width 0.4s ease;
}

.stat:hover::before { width: 60%; }

.stat-numero {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--laranja);
    display: block;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cinza);
    margin-top: 0.4rem;
    display: block;
}

/* ─────────────────────────────────────────
   SOBRE
───────────────────────────────────────── */
.sobre {
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.sobre-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sobre-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--laranja);
}

.sobre-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--branco);
    margin-bottom: 1.5rem;
}

.sobre-titulo span { color: var(--laranja); }

.sobre-texto {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.6);
    font-weight: 300;
}

.sobre-texto + .sobre-texto { margin-top: 1rem; }

.sobre-direita {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sobre-card {
    background: var(--grafite);
    padding: 2rem;
}

.sobre-card-icone {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.sobre-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ouro);
    margin-bottom: 0.4rem;
}

.sobre-card p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   GALERIA
───────────────────────────────────────── */
.galeria { padding: 0 4rem 7rem; }

.galeria-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.galeria-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.02em;
    line-height: 1;
}

.galeria-titulo span { color: var(--laranja); }

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.galeria-item {
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    aspect-ratio: 4/3;
}

.galeria-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(10%);
}

.galeria-item:last-child img {
    object-position: center 20%;
}

.galeria-item:nth-child(2) img {
    object-position: center;
    transform: scale(1.15);
}

.galeria-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 92, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.galeria-item:hover .galeria-overlay { opacity: 1; }

.galeria-overlay span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
}

/* ─────────────────────────────────────────
   TIME
───────────────────────────────────────── */
.time {
    padding: 5rem 4rem;
    background: var(--grafite);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.time-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ouro);
    margin-bottom: 1rem;
}

.time-nome {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.04em;
    color: var(--branco);
    line-height: 1;
}

.time-nome span { color: var(--laranja); }

.time-info {
    font-size: 0.85rem;
    color: var(--cinza);
    margin-top: 1rem;
    letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   CONTATO
───────────────────────────────────────── */
.contato {
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contato-esquerda h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--branco);
}

.contato-esquerda h2 span { color: var(--laranja); }

.contato-esquerda p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 1.2rem;
    font-weight: 300;
}

.contato-redes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rede-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--branco);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.rede-link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--laranja);
    transform: scaleY(0);
    transition: transform 0.25s;
}

.rede-link:hover::before { transform: scaleY(1); }

.rede-link:hover {
    border-color: rgba(255, 92, 0, 0.3);
    background: rgba(255, 92, 0, 0.04);
    padding-left: 2rem;
}

.rede-icone {
    font-size: 1.3rem;
    width: 2rem;
    text-align: center;
}

.rede-info strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ouro);
}

.rede-info span {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.65);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
    padding: 2.5rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--branco);
}

.footer-logo span { color: var(--laranja); }

.footer-credito {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.25);
    letter-spacing: 0.06em;
}

.footer-credito a {
    color: var(--laranja);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-credito a:hover { opacity: 1; }

/* ─────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────── */
@media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    nav ul { gap: 1.5rem; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-direita {
        height: 55vw;
        order: -1;
    }

    .hero-esquerda { padding: 3rem 1.5rem 4rem; }
    .hero-numero { font-size: 30vw; left: -1rem; }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1.5rem;
    }

    .sobre {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 1.5rem;
    }

    .galeria { padding: 0 1.5rem 5rem; }

    .galeria-grid { grid-template-columns: 1fr 1fr; }

    .galeria-item:first-child { grid-column: span 2; }

    .time { padding: 4rem 1.5rem; }

    .contato {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 1.5rem;
    }

    footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}