@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

:root {
    --color-bg: #ffffff; --color-text: #0a0a0a; --color-accent: #8b0000;
    --color-border: #e5e5e5; --font-main: 'Inter', sans-serif; --header-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { font-family: var(--font-main); background: var(--color-bg); color: var(--color-text); padding-top: var(--header-height); line-height: 1.5; }

/* ================= HEADER & NAV ================= */
.site-header { 
    position: fixed; width: 100%; height: var(--header-height); top: 0; left: 0;
    background-color: #ffffff; border-bottom: 1px solid var(--color-border); 
    z-index: 99999; display: flex; align-items: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.nav-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { max-height: 50px; width: auto; display: block; font-weight: 900; font-size: 1.8rem; text-decoration: none; letter-spacing: -1px; color: var(--color-text); }
nav ul { display: flex; gap: 2rem; list-style: none; }
nav a { text-decoration: none; color: var(--color-text); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; transition: 0.2s;}
nav a:hover { color: var(--color-accent); }

/* ================= BOTÕES ================= */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; background: var(--color-text); color: var(--color-bg); text-decoration: none; font-weight: 700; text-transform: uppercase; border: 1px solid var(--color-text); cursor: pointer; transition: 0.2s; border-radius: 4px;}
.btn:hover { background: var(--color-accent); border-color: var(--color-accent); color: white; }
.btn-whatsapp { background-color: #25D366; color: white; border-color: #25D366; }
.btn-whatsapp:hover { background-color: #128C7E; border-color: #128C7E; color: white; }
.w-100 { width: 100%; }

/* ================= HERO ================= */
.hero { position: relative; min-height: calc(100vh - var(--header-height)); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 4rem 2rem; text-align: center; background: #000; color: white; overflow: hidden; }
.hero-bg-media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; z-index: 0; }
.hero-center-logo { max-width: 280px; height: auto; margin-bottom: 1.5rem; position: relative; z-index: 1; filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5)); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; text-transform: uppercase; position: relative; z-index: 1; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1;}

/* ================= ESTRUTURA SEÇÕES ================= */
section { padding: 6rem 2rem; border-bottom: 1px solid var(--color-border); }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--color-accent); display: block; margin-bottom: 0.5rem;}
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.2; letter-spacing: -0.02em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

/* RECORTE E EFEITO ESFUMAÇADO (DISSOLVER BORDAS) */
.sobre-media-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.sobre-media-fx {
    width: 100%;
    max-width: 550px; /* Tamanho proporcional ao espaço branco */
    height: auto;
    object-fit: contain; /* GARANTE QUE A IMAGEM NÃO SEJA CORTADA */
    display: block;
    
    /* Efeito de dissolver bordas (Radial Mask) */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 85%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 85%);
}

/* ================= PÁGINA PRODUTOS ================= */
.page-header { background: #000; color: white; padding: 6rem 2rem 3rem; text-align: center; }
.search-bar { width: 100%; max-width: 600px; padding: 1.2rem; font-size: 1.1rem; border: 2px solid var(--color-text); border-radius: 4px; font-weight: 700; outline: none; transition: 0.2s; text-transform: uppercase; }
.cat-btn { padding: 8px 16px; border: 1px solid var(--color-border); background: white; cursor: pointer; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; transition: 0.2s; border-radius: 4px; }
.cat-btn.active { background: var(--color-text); color: white; }

/* ================= CARDS PRODUTOS ================= */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 3rem; align-items: start; }
.produto-card { display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; background: var(--color-bg); }
.card-media { width: 100%; background: #f0f0f0; border-bottom: 1px solid var(--color-border); }
.media-full, .media-video { width: 100%; height: 280px; object-fit: cover; display: block; }

.produto-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: #fff; }
.card-details-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.card-details-wrapper.open { grid-template-rows: 1fr; border-top: 1px solid #eee; }
.card-details-content { padding: 1.5rem; background: #fafafa; overflow: hidden; }
.card-price { font-size: 1.25rem; font-weight: 900; color: var(--color-accent); }

/* ================= FORMULÁRIO & FOOTER ================= */
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid var(--color-border); font-family: inherit; font-size: 1rem; border-radius: 4px; outline: none; }
footer { background: var(--color-text); color: white; padding: 4rem 2rem; text-align: center; }

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-inner { flex-direction: column; padding: 1rem; gap: 15px; }
    .hero-center-logo { max-width: 200px; }
}

/* ================= BLINDAGEM DE TEXTO ================= */
.html-content-global *, .html-content * { font-family: var(--font-main) !important; }
.html-content-global p, .html-content-global div { font-weight: 300 !important; color: #444 !important; margin-top: 0 !important; margin-bottom: 0.8rem !important; }
.html-content-global b, .html-content-global strong { font-weight: 900 !important; color: #000 !important; }
.html-content-global p:empty { display: none !important; }