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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #0d0d0d;
    background-color: #fffafa;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar .logo img {
    height: 50px;
    width: auto;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.navbar a {
    text-decoration: none;
    color: #010101;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.8rem;
}

.navbar a:hover {
    color: rgb(0, 0, 0);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    padding-top: 320px;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
:root {
    /* Define o quanto a rolagem deve parar ANTES do alvo (compensando a navbar) */
    scroll-padding-top: 80px;
    /* Use um valor um pouco maior que a altura da sua navbar (~70px) */
}
.hero .inner {
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero .brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 60px;
}

.hero .brand-logos img {
    height: 45px;
    width: auto;
}

.hero .brand-logos img:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 100px;
    /* distância entre logos e título */
    margin-top: 300px;
    /* 🔹 Aumente esse valor se quiser descer as logos também */
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        margin-top: 50px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1px;
    }
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn.primary {
    background: rgb(0, 180, 255);
    color: #ffffff;
}

.btn.primary:hover {
    background: #2ad0ff;
}

.btn.ghost {
    border: 1px solid #fffefe;
    color: #fff;
}

.btn.ghost:hover {
    background: rgb(0, 0, 0);
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
}

.container h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.container p.lead {
    font-size: 1.1rem;
    color: #282727;
    margin-bottom: 48px;
}

/* ===== GRID ===== */
.grid {
    display: grid;
    gap: 28px;
}

.grid.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===== CARDS ===== */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 32px 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.card .muted {
    color: #aaa;
}

/* ===== MEDIA PREVIEW ===== */
.media-preview {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.media-preview video,
.media-preview img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 160px 20px;
    background: linear-gradient(180deg, #fcfcfc 0%, rgb(247, 247, 247) 100%);
}

.cta h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.cta p {
    color: #040404;
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
    background: rgb(255, 255, 255);
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: #010101d0;
    text-decoration: none;
    margin: 0 6px;
}

footer a:hover {
    color: #00b4ff;
}

/* ===== ANIMAÇÕES ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 24px;
    }

    .navbar ul {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 80px 20px;
    }

    .cta {
        padding: 100px 20px;
    }
}

/* ===== Quality Section (CORRIGIDO) ===== */
#quality {
    text-align: center;
    padding: 100px 20px;
}

#quality h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#quality .lead {
    color: #282727;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Ajustes para o grid */
.quality-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.quality-bottom {
    display: flex;
    gap: 20px;
}

/* Card de Vídeo Base (CORRIGIDO) */
.quality-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    /* Garante a proporção 16:9, eliminando a necessidade de alturas fixas */
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

/* Vídeo dentro do card (CORRIGIDO) */
.quality-card video {
    width: 100%;
    height: 100%;
    /* COBRIR: Garante que o vídeo preencha o container inteiro, evitando barras pretas/corte */
    object-fit: cover;
    display: block;
    background: #000;
    border-radius: 12px;
}

.quality-card.large {
    /* Ocupa a largura total no mobile e no grid web, altura definida por aspect-ratio */
    width: 100%;
}

.quality-card.small {
    /* Cards menores também usam aspect-ratio 16:9 */
    flex: 1;
    /* Permite que ocupe espaço igual no quality-bottom */
}

/* Título sobreposto */
.overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
}

/* Fade-up animation (mantido) */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

.hey-meta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8e2de2, #4a00e0, #00c6ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hey-meta h2,
.hey-meta p {
    color: #0d0d0d;
    /* Corrigido para preto, pois o background da seção é branco */
}


/* Player discreto no canto inferior direito */
.video-controls {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 12px;
}

.video-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Responsivo para Quality Section (CORRIGIDO) */
@media (max-width: 768px) {
    .quality-bottom {
        flex-direction: column;
    }

    /* Não precisa mais de alturas fixas, aspect-ratio cuida disso */
}

/* ===== HOTSPOTS PARA SEÇÃO #STYLE (NOVO VISUAL) ===== */
.hotspot-container {
    position: relative;
    display: inline-block;
    max-width: 800px;
    margin: 0 auto;
}

.hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    /* Estilos iniciais do círculo (hotspot-icon) */
}

.hotspot-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    /* Visual: Círculo cinza claro/transparente */
    background: rgba(200, 200, 200, 0.8);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    border: 3px solid rgba(255, 255, 255, 0.8);
    /* Borda branca */

    /* O "+" é azul-claro (Ray-Ban/Meta blue) */
    color: rgb(0, 180, 255);

    transition: all 0.2s ease;
}

.hotspot:hover .hotspot-icon {
    transform: scale(1.1);
    /* Um pequeno efeito ao passar o mouse */
    /* Ao passar o mouse, pode inverter as cores ou dar um destaque sutil */
    background: rgba(0, 180, 255, 0.9);
    color: #fff;
    border-color: #fff;
}

.hotspot-info {
    position: absolute;
    top: -5px;
    /* Posição à esquerda do ícone */
    right: 35px;
    /* Ajusta a posição para o lado esquerdo do ícone */
    white-space: nowrap;
    padding: 8px 12px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

/* Estado de HOVER: torna o texto visível */
.hotspot:hover .hotspot-info {
    opacity: 1;
    visibility: visible;
}

/* Responsividade: ajusta a posição do tooltip em telas pequenas (mantido do anterior) */
@media (max-width: 600px) {
    .hotspot-info {
        top: 35px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
    }
}

/* ===== MODEL CARDS ===== */
/* ===== MODEL CARDS ===== */
.models-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.model-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.model-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 16px;
}

.model-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.model-card .btn.primary {
    background-color: #00b8ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s ease;
}

.model-card .btn.primary:hover {
    background: linear-gradient(90deg, #00b8ff, #0077ff);
}
.hotspot-info {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Mostra tooltip no hover (desktop) */
.hotspot:hover .hotspot-info {
    opacity: 1;
    visibility: visible;
}

/* Mostra tooltip ao clicar (mobile) */
.hotspot.active .hotspot-info {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .hotspot-info {
        bottom: auto;
        top: 110%;
        left: 50%;
        transform: translateX(-50%);
        white-space: normal;
        width: max-content;
        max-width: 180px;
        text-align: center;
    }
    .hotspot-info::after {
        top: -6px;
        transform: translateX(-50%) rotate(180deg);
    }
        .hotspot-info[data-align="left"] {
            left: 10%;
            transform: translateX(0);
        }
                .hotspot-info[data-align="right"] {
                    left: auto;
                    right: 10%;
                    transform: translateX(0);
                }
}