/* Manila Importadora LTDA — Estilos base (layout minimalista e moderno) */
:root {
  --color-bg: #FFFFFF;
  --color-text: #111827;
  --color-muted: #6B7280;
  --color-primary: #0F62FE;
  --color-primary-contrast: #FFFFFF;
  --color-elevated: #F9FAFB;
  --color-border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { font-weight: 700; letter-spacing: 0.2px; }
.nav { display: flex; gap: 18px; }
.nav a { color: var(--color-text); padding: 10px 12px; border-radius: 10px; }
.nav a:hover { background: var(--color-elevated); }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero .title { font-size: 44px; line-height: 1.1; margin: 10px 0; }
.hero .subtitle { font-size: 18px; color: var(--color-muted); }
.cta { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary {
  background: var(--color-primary); color: var(--color-primary-contrast);
  border: none; border-radius: 14px; padding: 14px 20px; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { filter: brightness(1.05); }
.badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.badge { background: var(--color-elevated); color: var(--color-text); padding: 10px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }

/* Sections */
.section { padding: 56px 0; }
.section-header { margin-bottom: 18px; }
.section-title { font-size: 28px; margin: 0 0 10px 0; }
.section-desc { color: var(--color-muted); }

/* Cards e relevo */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.card h3 { margin: 0 0 8px 0; font-size: 20px; }
.card p { color: var(--color-muted); }

/* Sobre */
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kv .box { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.kv .box dt { font-weight: 600; }
.kv .box dd { margin: 0 0 12px 0; color: var(--color-muted); }

/* Depoimentos */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 20px; }
.testimonial .quote { font-size: 16px; }
.testimonial .author { margin-top: 12px; font-weight: 600; }
.testimonial .role { color: var(--color-muted); }

/* Compliance */
.notice { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.notice ul { margin: 10px 0 0 16px; color: var(--color-muted); }

/* Contato */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact .panel { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.contact .panel a { font-weight: 600; }

/* Footer */
.footer { padding: 28px 0; border-top: 1px solid var(--color-border); color: var(--color-muted); }
.footer a { color: var(--color-text); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* Responsivo */
@media (max-width: 1024px) { .grid, .testimonials { grid-template-columns: repeat(2, 1fr); } .kv { grid-template-columns: 1fr; } .contact { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .nav { display: none; }
  .hero .title { font-size: 32px; }
  .grid, .testimonials { grid-template-columns: 1fr; }
  .badges { gap: 8px; }
}