
/* Reset */
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
img { max-width: 100%; display:block; }
a { color: inherit; text-decoration: none; }
:root {
  --primary: #1e40af;
  --accent: #0ea5e9;FOO
  --text: #1f2937;
  --light: #f8fafc;
  --radius: 16px;
}
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji'; color: var(--text); background: white; line-height:1.6; }
.container { max-width:1200px;margin-inline:auto;padding:0 1rem; }
.site-header { position: sticky; top:0; z-index: 40; background:white; border-bottom:1px solid #e5e7eb; }
.site-header .nav { display:flex; align-items:center; justify-content:space-between; height:72px; gap:1rem; }
.brand { display:flex; align-items:center; gap:.5rem; font-weight:800; font-size:1.125rem; letter-spacing:.2px; }
.brand img { width:76px; height:px; border-radius:12px; }
.menu { display:flex; gap:1rem; align-items:center; }
.menu a { padding:.5rem .75rem; border-radius:10px; font-weight:600; color:#334155; }
.menu a:hover { background:#f1f5f9; }
.btn { display:inline-block; padding:.6rem 1rem; border-radius:12px; font-weight:700; }
.btn-primary { background: var(--primary); color:white; }
.btn-primary:hover { filter: brightness(0.95); }
.nav-toggle { display:none; background:transparent; border:0; font-size:1.5rem; }



/* Hero */
.hero { background: radial-gradient(60% 80% at 20% 0%, #e0f2fe 0%, transparent 60%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.hero .wrap { display:grid; grid-template-columns: 1.1fr .9fr; align-items:center; gap:2rem; padding: clamp(2rem, 6vw, 5rem) 0; }
.hero .kicker { color: var(--primary); font-weight:800; text-transform: uppercase; letter-spacing:.12em; font-size:.85rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height:1.1; margin:.25rem 0 1rem; }
.hero p { font-size: 1.1rem; color:#475569; }
.hero-card { background:white; border:1px solid #e2e8f0; padding:1rem; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(2,6,23,.06); }
.hero-badges { display:flex; gap: .75rem; flex-wrap:wrap; margin-top:1rem; }
.badge { background:#f1f5f9; color:#0f172a; border-radius:999px; padding:.4rem .7rem; font-weight:700; font-size:.85rem; }
.hero-figure { border-radius: var(--radius); overflow:hidden; box-shadow: 0 10px 40px rgba(2,6,23,.12); border:1px solid #e2e8f0; }
.hero-figure img { aspect-ratio: 16/12; object-fit: cover; }


/* Sections */
.section { padding: clamp(2rem, 5vw, 4rem) 0; }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height:1.2; margin:0 0 1rem; }
.muted { color:#6b7280; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card { background:white; border:1px solid #e5e7eb; border-radius: var(--radius); padding:1rem; box-shadow: 0 8px 24px rgba(2,6,23,.05); }
.card h3 { margin:.25rem 0 .5rem; }
.icon { width:42px; height:42px; border-radius:12px; display:grid; place-items:center; background: var(--light); color: var(--primary); font-weight:900; }
.highlight { background: linear-gradient(180deg, #f0f9ff, #dbeafe); border:1px solid #93c5fd; }

/* Product grid */
.products-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.product-card { border:1px solid #e5e7eb; border-radius:16px; overflow:hidden; background:white; box-shadow: 0 8px 24px rgba(2,6,23,.05); display:flex; flex-direction:column; }
.product-card .content { padding: .75rem 1rem 1rem; }
.tag { font-size:.75rem; background:#eef2ff; color:#3730a3; padding:.2rem .5rem; border-radius:999px; font-weight:700; }
.price { font-weight:800; }

/* Footer */
.site-footer { background:#0b1220; color:#e5e7eb; padding:3rem 0; margin-top:2rem; }
.site-footer a { color: #e5e7eb; }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr; gap:2rem; }
.brand-inline { display:flex; gap:.5rem; align-items:center; }
.brand-inline img { width:76px; height:px; border-radius:10px; }

.cta-bar { background: var(--primary); color:white; padding:1.25rem 0; }
.cta-bar .row { display:flex; align-items:center; justify-content:space-between; gap:1rem; }

.hero .cta-buttons { display:flex; gap:.75rem; align-items:center; margin-top: 1rem; }
.btn-outline { border:2px solid var(--primary); color: var(--primary); background:white; }
.btn-outline:hover { background:#eff6ff; }

/* Responsive */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .menu { display:none; position:absolute; top:72px; left:0; right:0; background:white; border-bottom:1px solid #e5e7eb; padding: .5rem 1rem; flex-direction:column; }
  .menu a { padding:.75rem .5rem; }
  .nav-toggle { display:block; }
  .products-grid { grid-template-columns: 1fr; }
}
/* Texto branco no botão "Onde encontrar" do menu */
.menu a.btn.btn-primary,
.menu a.btn.btn-primary:visited {
  color: #fff;
}

.menu a.btn.btn-primary:hover,
.menu a.btn.btn-primary:focus {
  color: #fff;
  filter: brightness(0.95);
}
/* ====== Hero: tamanho e alinhamento do vídeo ====== */

/* limita a largura do bloco do vídeo e alinha à direita no desktop */
.hero-card{
  max-width: 620px;      /* ajuste fino: 540–720px */
  margin-left: auto;     /* encosta à direita dentro do grid */
}

/* garante proporção e evita “esticar” */
.hero-card .hero-video{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;    /* mude para 16/10 ou 4/3 se preferir */
  object-fit: cover;     /* preenche sem distorcer */
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(2,6,23,.12);
  border: 1px solid #e2e8f0;
}

/* opcional: limite de altura se o vídeo estiver muito alto em telas grandes */
@media (min-width: 1280px){
  .hero-card .hero-video{ max-height: 380px; }
}

/* no mobile, centraliza o bloco */
@media (max-width: 600px){
  .hero-card{ margin: 0 auto; max-width: 680px; }
}
/* ===== Produtos: alinhar e limitar o catálogo do topo ===== */
.section.hero-card.highlight .container { 
  max-width: 1000px;                /* deixa a faixa do topo mais estreita */
}
.section.hero-card.highlight img {
  max-width: 900px;                 /* tamanho máximo do catálogo */
  width: 100%;
  height: auto;
  display: block;
  margin: 12px auto;                /* centraliza */
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

/* ===== Produtos: fotos dos cards com tamanho uniforme ===== */
.product-card img{
  width: 100%;
  aspect-ratio: 4/3;                /* 4:3 fica equilibrado; use 1/1 se preferir quadrado */
  object-fit: cover;                /* preenche sem distorcer */
}
/* ===== Produtos: centralizar catalogo.png no desktop ===== */
@media (min-width: 961px){
  .section.hero-card.highlight .container{
    max-width: 1000px;       /* faixa um pouco mais estreita (opcional) */
    margin: 0 auto;          /* centraliza a faixa */
    display: flex;
    flex-direction: column;
    align-items: center;      /* <<< centraliza conteúdo */
    text-align: center;
  }

  .section.hero-card.highlight .catalogo-img{
    max-width: 760px;         /* ajuste fino: 700–900px */
    width: 100%;
    height: auto;
    display: block;
    margin: 16px auto 0;      /* <<< centraliza a imagem */
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(2,6,23,.06);
  }
}
/* Produtos: apertar o espaço do título "Catálogo" no topo */
.section.hero-card.highlight { 
  padding: 1.25rem 0;                 /* antes: clamp(2rem, 5vw, 4rem) */
}

.section.hero-card.highlight h1 {
  margin: 0 0 .5rem;                  /* reduz margem inferior do H1 */
  line-height: 1.1;                   /* mantém leitura bonita */
}

.section.hero-card.highlight p {
  margin: 0.25rem 0 0;                /* reduz margem do parágrafo abaixo */
}

/* (opcional) Desktop: um pouco mais compacto ainda */
@media (min-width: 961px){
  .section.hero-card.highlight { padding: 1rem 0; }
  .section.hero-card.highlight h1 { margin: 0 0 .4rem; }
  .section.hero-card.highlight p { margin: 0; }
}
/* Botão "Onde encontrar" com texto branco no menu */
.menu a.btn.btn-primary,
.menu a.btn.btn-primary:visited {
  color: #fff;           /* texto branco */
}

.menu a.btn.btn-primary:hover {
  color: #fff;           /* mantém branco no hover */
  filter: brightness(0.95);
}
/* ====== Hero: tamanho e alinhamento do vídeo ====== */

/* limita a largura do bloco do vídeo e alinha à direita no desktop */
.hero-card{
  max-width: 620px;      /* ajuste fino: 540–720px */
  margin-left: auto;     /* encosta à direita dentro do grid */
}

/* garante proporção e evita “esticar” */
.hero-card .hero-video{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;    /* mude para 16/10 ou 4/3 se preferir */
  object-fit: cover;     /* preenche sem distorcer */
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(2,6,23,.12);
  border: 1px solid #e2e8f0;
}

.brand img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
}
/* ====== Hero: tamanho e alinhamento do vídeo ====== */

/* limita a largura do bloco do vídeo e alinha à direita no desktop */
.hero-card{
  max-width: 620px;      /* ajuste fino: 540–720px */
  margin-left: auto;     /* encosta à direita dentro do grid */
}

/* garante proporção e evita “esticar” */
.hero-card .hero-video{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;    /* mude para 16/10 ou 4/3 se preferir */
  object-fit: cover;     /* preenche sem distorcer */
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(2,6,23,.12);
  border: 1px solid #e2e8f0;
}

/* opcional: limite de altura se o vídeo estiver muito alto em telas grandes */
@media (min-width: 1280px){
  .hero-card .hero-video{ max-height: 380px; }
}

/* no mobile, centraliza o bloco */
@media (max-width: 960px){
  .hero-card{ margin: 0 auto; max-width: 680px; }
}
/* Logo maior no topo */
.site-header .nav { height: 88px; }     /* aumente a altura do header */
.brand img {
  width: 80px;                          /* antes era ~40–52px */
  height: 80px;                         /* mantenha proporção */
  border-radius: 12px;
}

/* menu mobile acompanha a nova altura */
@media (max-width: 640px){
  .menu { top: 88px; }
}
.no-click {
  pointer-events: none;   /* não clica */
  cursor: default;        /* cursor normal */
  color: inherit;         /* mesma cor do texto */
  text-decoration: none;  /* sem sublinhado */
}
