/* --- Variáveis & Reset --- */
:root {
    --bg-color: #f8f5f2; /* Tom off-white mais orgânico (papel) */
    --text-color: #1a1a1a;
    --accent-color: #d14424; /* Um tom terracota para arte/cultura */
    --glass-bg: rgba(248, 245, 242, 0.9);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --menu-width: 400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
p {line-height: 1.5em;}
ul { list-style: none; }
img, video { width: 100%; height: auto; display: block; object-fit: cover; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden; /* Previne scroll lateral */
}

/* Tipografia */
h1, h2, h3, h4, .serif-font { font-family: var(--font-serif); font-weight: 300; }
.btn-primary {
    padding: 15px 40px;
    background: var(--text-color);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s, background 0.3s;
}
.btn-primary:hover { transform: scale(1.02); background: var(--accent-color); }

/* --- 1. Header & Nav --- */
#main-header {
    position: fixed;
    top: 0; width: 100%; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 40px; z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
}
#main-header .header-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-color);
    transition: 0.3s;
}

.header-icon-link:hover svg {
    fill: var(--accent-color);
}
.brand-logo img { height: 40px; width: auto; } /* Placeholder do Logo */

.menu-trigger {
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
    position: relative;
}

/* Side Menu (Off-Canvas) */
.side-menu {
    position: fixed; top: 0; right: 0;
    width: var(--menu-width); height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex; flex-direction: column; justify-content: center; padding: 60px;
}
.side-menu.active { transform: translateX(0); }

.close-menu {
    position: absolute; top: 30px; right: 40px;
    font-size: 2rem; cursor: pointer;
}
.side-menu ul li { margin-bottom: 20px; }
.side-menu ul li a {
    font-family: var(--font-serif); font-size: 2rem; color: #333;
}
.side-menu ul li a:hover { color: var(--accent-color); padding-left: 10px; }

/* Overlay escuro quando menu abre */
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1050;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* --- 2. Hero Video --- */
#hero {
    height: 100vh; width: 100%;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: white; text-align: center;
}
.video-bg {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.6); /* Escurece o vídeo para ler o texto */
}
#hero h1 { font-size: 5.5rem; line-height: 1; }
#hero p { font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; }

/* --- 3. Marca/Story & 4. Coleção (CSS base inalterado, ajustes visuais) --- */
.parallax-section { padding: 120px 40px; }
.story-block { display: flex; gap: 60px; align-items: center; margin-bottom: 100px; transition: transform 0.1s linear, opacity 0.1s linear; }
.story-block.reverse { flex-direction: row-reverse; }
.story-text { width: 40%; }
.story-image { width: 50%; }

/* --- 7. Clássicos (Biguá) --- */
#classics-split { display: flex; min-height: 90vh; border-top: 1px solid #e5e5e5; }
.split-left { width: 60%; position: relative; background: #f2f2f2; display: flex; align-items: center; }
.carousel-controls { position: absolute; width: 100%; padding: 0 20px; display: flex; justify-content: space-between; pointer-events: none; z-index: 10; }
.nav-arrow { pointer-events: auto; cursor: pointer; background: transparent; border: none; font-size: 2rem; }
.horizontal-scroll-wrapper { display: flex; gap: 40px; overflow-x: auto; padding: 0 60px; scroll-behavior: smooth; width: 100%; scrollbar-width: none; }
.horizontal-scroll-wrapper::-webkit-scrollbar { display: none; }
.product-item { min-width: 320px; text-align: center; }
.product-item img { height: 400px; margin-bottom: 15px; } /* Camisas/Canecas */

.split-right { width: 40%; padding: 60px; background: #fff; border-left: 1px solid #eee; display: flex; align-items: center; }
.bigua-concept p { font-size: 1.2rem; line-height: 1.7; color: #555; margin: 20px 0; font-family: var(--font-serif); font-style: italic; }

/* --- Footer (Icons) --- */
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons svg { width: 24px; height: 24px; fill: var(--text-color); transition: 0.3s; }
.social-icons svg:hover { fill: var(--accent-color); }

/* --- Responsivo --- */
@media (max-width: 768px) {
    .side-menu { width: 80%; }
    #hero h1 { font-size: 3rem; }
    .story-block, .story-block.reverse, #classics-split { flex-direction: column; }
    .split-left, .split-right, .story-text, .story-image { width: 100%; }
    #classics-split { flex-direction: column-reverse; }
    .split-right { padding: 40px 20px; }
}

/* Classes Utilitárias de Animação */
.reveal-text, .reveal-card { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }
/* --- NOVO RODAPÉ (Estilo Startmovin) --- */
#main-footer {
    background-color: #1a1a1a; /* Fundo escuro */
    color: #f8f5f2;
    padding: 80px 40px 40px;
    font-family: var(--font-sans);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 60px;
}

/* Coluna 1: Newsletter e Tagline */
.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.footer-newsletter p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}
.newsletter-form input {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 10px;
    width: 100%;
    outline: none;
}
.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
}

/* Colunas de Links */
.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: #666;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #999;
}

/* Área de Contato e Social (Ícones) */
.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.contact-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
}
.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Bottom Bar (Créditos) */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.credit-link {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid #444;
}

/* Responsivo */
@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Cookie Banner (Mantido e ajustado) */
#cookie-banner {
    background: #fff;
    color: #000;
    border-top: 1px solid #eee;
    padding: 20px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: none; /* Controlado via JS */
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
#cookie-banner p { font-size: 0.9rem; margin: 0; max-width: 80%; }
#cookie-banner button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.8rem;
}