@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --primary: #39FF14; 
    --dark: #000000;
    --gray: #0a0a0a;
    --text: #ffffff;
    --transition: 0.3s ease-in-out;
}

/* --- RESET E BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--dark); color: var(--text); line-height: 1.4; overflow-x: hidden; width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.v-bold { color: var(--primary) !important; font-weight: 900 !important; }

/* --- HEADER RESPONSIVO --- */
header { 
    background: rgba(0,0,0,0.95); padding: 10px 0; position: fixed; 
    width: 100%; z-index: 1000; border-bottom: 2px solid var(--primary);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.2rem; }

.nav-links { display: flex; list-style: none; gap: 10px; }
.nav-links a { 
    color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 700; 
    text-transform: uppercase; padding: 6px 12px; border-radius: 50px; transition: var(--transition);
    border: 1px solid transparent;
}
.nav-links a:hover { background: var(--primary); color: #000; }

/* --- HERO (PC) --- */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}

/* VÍDEOS LATERAIS (SOMENTE PC) */
.video-side {
    position: absolute; top: 55%; transform: translateY(-50%);
    width: 200px; display: flex; flex-direction: column; gap: 15px; z-index: 5; opacity: 0.6;
}
.video-side.left { left: 20px; }
.video-side.right { right: 20px; }
.video-side video { width: 100%; height: 300px; object-fit: cover; border-radius: 15px; border: 2px solid var(--primary); }

.profile-bg { position: absolute; z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.4; pointer-events: none; }
.profile-bg img { max-height: 80vh; max-width: 90vw; object-fit: contain; }

.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 20px; }
.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: 15px; text-transform: uppercase; }
.hero p { font-size: 1.2rem; color: #ccc; margin-bottom: 30px; }

/* BOTÕES HERO */
.hero-btns-area { display: flex; flex-direction: column; align-items: center; gap: 15px; width: 100%; }
.btn-primary { 
    background: var(--primary); color: #000; padding: 18px 40px; 
    text-decoration: none; font-weight: 900; border-radius: 8px; 
    font-size: 1.1rem; border: none; cursor: pointer; transition: 0.3s;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4); text-transform: uppercase;
}
.secondary-btns { display: flex; gap: 10px; width: 100%; justify-content: center; }
.btn-sec { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 10px 20px; border-radius: 5px; font-weight: 700; cursor: pointer; flex: 1; max-width: 200px; }

/* --- HISTÓRIA RESPONSIVA --- */
.slider-container { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; 
    background: #000; padding: 30px; border-radius: 20px; border: 1px solid #222; align-items: center;
}
.slider-wrapper { height: 350px; border-radius: 15px; border: 2px solid var(--primary); position: relative; overflow: hidden; }
.slider-wrapper img { width: 100%; height: 100%; object-fit: cover; position: absolute; opacity: 0; transition: 0.8s; }
.slider-wrapper img.active { opacity: 1; }

/* --- CONTATOS --- */
.contact-grid { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.contact-btn-padrao {
    width: 100%; max-width: 500px; background: #111; border: 2px solid var(--primary);
    color: #fff; padding: 20px; text-decoration: none; font-weight: 900; 
    border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 15px;
}

/* --- MODAL --- */
.modal-content { background: #111; margin: 15% auto; padding: 30px; border: 2px solid var(--primary); width: 90%; max-width: 400px; border-radius: 20px; position: relative; }

/* =============================================
   REGRAS PARA CELULAR (MOBILE)
   ============================================= */
@media (max-width: 768px) {
    /* 1. Esconde os vídeos laterais no celular (eles atrapalham a leitura) */
    .video-side { display: none; }

    /* 2. Ajusta o Header */
    nav { flex-direction: column; gap: 10px; }
    .nav-links { gap: 5px; }
    .nav-links a { font-size: 0.65rem; padding: 5px 10px; }

    /* 3. Ajusta o Hero (Texto e Título) */
    .hero { height: auto; padding: 120px 0 60px 0; }
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero p { font-size: 1rem; padding: 0 10px; }

    /* 4. Botões do Celular (Ficam um embaixo do outro e maiores) */
    .hero-btns-area { padding: 0 20px; }
    .btn-primary { width: 100%; text-align: center; font-size: 1rem; }
    .secondary-btns { flex-direction: column; width: 100%; }
    .btn-sec { max-width: 100%; width: 100%; padding: 15px; }

    /* 5. História (Carrossel) - No celular fica uma coluna só */
    .slider-container { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
    .slider-wrapper { height: 250px; }
    .history-content { text-align: center; }
    .history-content h3 { font-size: 1.8rem; }

    /* 6. Contatos Rápidos */
    .contact-btn-padrao { font-size: 0.9rem; padding: 15px; width: 90%; }
}