/* Configurações de Cores e Tipografia */
:root {
    --bg-black: #0a0a0a;
    --gold: #d4af37;
    --pink: #ff4d94;
    --purple: #8e44ad;
    --blue: #3498db;
    --red: #e74c3c;
    --orange: #f39c12;
}

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

body {
    background-color: var(--bg-black);
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.gold { color: var(--gold); }
.pink { color: var(--pink); }
.orange { color: var(--orange); }

/* HERO 1 - Vídeo e Logo */
.hero-main {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; overflow: hidden;
}

.video-bg iframe {
    width: 100vw; height: 56.25vw;
    min-height: 100vh; min-width: 177.77vh;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    z-index: -1;
}

.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%;
    z-index: 10;
}

.mini-logo {
    height: 80px; /* Aumentado para maior visibilidade */
    width: auto;
}

.links a { color: white; text-decoration: none; margin-right: 20px; font-size: 14px; }

.btn-login {
    border: 1px solid var(--gold); background: transparent;
    color: var(--gold); padding: 8px 20px; border-radius: 5px; cursor: pointer;
}

.hero-text {
    flex-grow: 1; display: flex; flex-direction: column;
    justify-content: center; padding-left: 5%;
}

.hero-text h1 { font-size: 3rem; margin-bottom: 15px; line-height: 1.2; }

.apps img { height: 40px; margin-right: 10px; cursor: pointer; }

/* HERO 2 e 3 - Seções e Container */
.hero-categories, .hero-features {
    padding: 100px 5%;
    min-height: 80vh;
    display: flex; align-items: center;
}

.container {
    display: flex; width: 100%; justify-content: space-between; align-items: center;
    gap: 50px;
}

.text-side { flex: 1; }
.text-side h2 { font-size: 2.5rem; margin-bottom: 20px; }

.grid-side {
    display: grid; grid-template-columns: repeat(2, 180px); gap: 20px;
}

.card {
    height: 200px; border-radius: 15px; display: flex;
    align-items: flex-end; padding: 15px; font-weight: bold;
}

.pink-card { background: var(--pink); }
.purple-card { background: var(--purple); }
.blue-card { background: var(--blue); }
.red-card { background: var(--red); }

/* HERO 3 - Mockup de Celular */
.phone-mockup {
   width: 300px;
    height: 600px;
    border: 12px solid #333;
    border-radius: 40px;
    overflow: hidden;
    background-color: #000;
    
    /* A mágica acontece aqui: */
    transform: perspective(1000px) rotateY(348deg) rotateX(15deg) rotateZ(5deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.7); /* Sombra mais forte para o 3D */
    transition: transform 0.5s ease; /* Para ficar suave se mudarmos depois */
 }

.phone-mockup img {
    width: 100%;
    height: 100%;
    rotate: 70deg;
    object-fit: cover;
}

/* Footer */
.footer {
    text-align: center; padding: 50px; border-top: 1px solid #333;
}

.footer-logo { height: 60px; margin-bottom: 10px; }    
