/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #012269;
  --navy-dark: #011744;
  --ink: #0b1230;
  --white: #ffffff;
  --paper: #f6f7fb;
  --gray-border: #e4e8f2;
  --text-muted: #56607a;

  /* cores do swoosh da marca */
  --gold: #ffc72c;
  --gold-deep: #e8a400;
  --pink: #e91e8c;
  --orange: #f5811f;
  --green: #4caf50;
  --blue: #2e6ff2;
  --purple: #7b2fbe;

  --grad-rainbow: linear-gradient(90deg, var(--gold) 0%, var(--orange) 22%, var(--pink) 45%, var(--green) 68%, var(--blue) 88%, var(--purple) 100%);

  --radius: 16px;
  --shadow: 0 10px 30px rgba(1, 34, 105, 0.08);
  --shadow-lift: 0 18px 44px rgba(1, 34, 105, 0.14);
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Schibsted Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.015em;
}

a { text-decoration: none; color: inherit; }

.section { padding: 96px 0; }
.section-alt { background: var(--paper); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; margin: 14px 0 14px; }
.section-sub { color: var(--text-muted); font-size: 1.08rem; }

/* destaque tipo pincelada nos títulos */
.hl {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.05em;
  height: 0.34em;
  border-radius: 3px 8px 4px 10px;
  z-index: -1;
  transform: skewX(-8deg);
  opacity: 0.5;
}
.hl-gold::after { background: var(--gold); }
.hl-pink::after { background: #ff9ed0; }
.hl-blue::after { background: #a8c4ff; }

/* texto gradiente arco-íris (usado em fundo navy) */
.grad-text {
  background: linear-gradient(92deg, var(--gold) 0%, var(--orange) 30%, var(--pink) 60%, #7fa1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow-dark { background: rgba(1, 34, 105, 0.07); color: var(--navy); border: 1px solid rgba(1, 34, 105, 0.12); }
.eyebrow-light { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.18); }
.eyebrow-hero { background: rgba(255, 199, 44, 0.14); color: var(--gold); border: 1px solid rgba(255, 199, 44, 0.35); }

/* faixa "cartela de tintas" — assinatura da marca */
.paint-strip {
  height: 5px;
  background: linear-gradient(90deg,
    var(--gold) 0 14.28%,
    var(--orange) 0 28.56%,
    var(--pink) 0 42.84%,
    var(--green) 0 57.12%,
    var(--blue) 0 71.4%,
    var(--purple) 0 85.68%,
    var(--navy) 0 100%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-icon { width: 18px; height: 18px; }

.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 8px 20px rgba(1, 34, 105, 0.28); }
.btn-primary:hover { background: var(--navy-dark); box-shadow: 0 12px 26px rgba(1, 34, 105, 0.34); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, #f2b40b 100%);
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(255, 199, 44, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(255, 199, 44, 0.45); filter: brightness(1.04); }

.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-ghost:hover { background: var(--white); border-color: var(--white); color: var(--navy); }

.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Botão WhatsApp (verde) — usado em todas as chamadas de ação */
.btn-whatsapp {
  background: linear-gradient(180deg, #25D366 0%, #1EBE57 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover { box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42); filter: brightness(1.03); }
.btn-whatsapp .btn-icon { width: 20px; height: 20px; }

.btn-header { display: none; padding: 11px 20px; font-size: 0.92rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(1, 34, 105, 0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo { display: flex; align-items: center; }

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav { display: none; gap: 34px; }
.nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: var(--grad-rainbow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 89px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 22px 24px;
  gap: 18px;
  border-bottom: 1px solid var(--gray-border);
  box-shadow: var(--shadow);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 10%, rgba(46, 111, 242, 0.25), transparent 60%),
    linear-gradient(165deg, #032a80 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 88px 0 104px;
  overflow: hidden;
}

/* brilhos coloridos de fundo (respingo de tinta) */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-1 { width: 420px; height: 420px; background: rgba(233, 30, 140, 0.22); top: -120px; right: -80px; }
.hero-glow-2 { width: 360px; height: 360px; background: rgba(255, 199, 44, 0.16); bottom: -140px; left: -100px; }
.hero-glow-3 { width: 300px; height: 300px; background: rgba(123, 47, 190, 0.28); bottom: -60px; right: 25%; }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.hero-text { text-align: center; max-width: 640px; }

.hero-text h1 {
  color: var(--white);
  font-size: clamp(1.95rem, 4.3vw, 2.85rem);
  font-weight: 800;
  margin: 20px 0 18px;
}

.hero-sub {
  color: #c3cdec;
  font-size: 1.12rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  list-style: none;
  margin-top: 34px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #aab8e6;
}
.hero-trust li { display: flex; align-items: center; gap: 9px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-gold { background: var(--gold); box-shadow: 0 0 10px rgba(255,199,44,0.7); }
.dot-pink { background: var(--pink); box-shadow: 0 0 10px rgba(233,30,140,0.7); }
.dot-green { background: #58d68d; box-shadow: 0 0 10px rgba(88,214,141,0.7); }

.hero-media { width: 100%; max-width: 560px; }

.hero-frame { position: relative; }
.hero-frame::before {
  content: "";
  position: absolute;
  inset: -10px -10px 10px 10px;
  border-radius: var(--radius);
  background: var(--grad-rainbow);
  opacity: 0.55;
  transform: rotate(2.2deg);
  filter: blur(1px);
}
.hero-frame .photo-hero { position: relative; }

/* cartelinhas de cor flutuantes */
.swatch-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px 8px;
  box-shadow: 0 14px 34px rgba(0, 10, 40, 0.35);
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--ink);
  min-width: 108px;
  animation: floaty 5s ease-in-out infinite;
}
.swatch-card .swatch-color { display: block; height: 44px; border-radius: 8px; margin-bottom: 7px; }
.swatch-card .swatch-name { display: block; font-weight: 700; }
.swatch-card .swatch-code { display: block; color: var(--text-muted); font-size: 0.62rem; letter-spacing: 0.04em; }

.swatch-card-1 { top: -22px; left: -18px; transform: rotate(-5deg); }
.swatch-card-1 .swatch-color { background: linear-gradient(135deg, #0334a5, var(--navy)); }
.swatch-card-2 { bottom: -20px; right: -14px; transform: rotate(4deg); animation-delay: 2.5s; }
.swatch-card-2 .swatch-color { background: linear-gradient(135deg, #ffd75e, var(--gold-deep)); }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* ===== Photo placeholders ===== */
.photo-placeholder {
  background: repeating-linear-gradient(45deg, #eef1f9, #eef1f9 10px, #e4e9f6 10px, #e4e9f6 20px);
  border: 2px dashed #aeb9d9;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #5a6690;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 20px;
}

.photo-hero { aspect-ratio: 4 / 3; background-color: rgba(255,255,255,0.06); }
.photo-produto { aspect-ratio: 16 / 10; }
.photo-carousel { aspect-ratio: 16 / 9; border-radius: 0; border: none; }
.photo-contato { aspect-ratio: 4 / 3; }

.photo-real {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.photo-cover { overflow: hidden; }
.photo-rounded { border-radius: var(--radius); }
.photo-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ===== Stats — cards estilo amostra de tinta ===== */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 56px;
  max-width: 780px;
}

.stat-item {
  --chip: var(--navy);
  flex: 1 1 180px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 0 0 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stat-item::before {
  content: "";
  display: block;
  height: 34px;
  margin-bottom: 16px;
  background: var(--chip);
}
.stat-gold::before { background: linear-gradient(90deg, #ffd75e, var(--gold-deep)); }
.stat-pink::before { background: linear-gradient(90deg, #ff5fb0, var(--pink)); }
.stat-blue::before { background: linear-gradient(90deg, #5d8ef6, var(--navy)); }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  padding: 0 20px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 2px 20px 0;
}

/* ===== Diferenciais ===== */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.diferencial-card {
  --accent: var(--navy);
  --accent-soft: rgba(1, 34, 105, 0.08);
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.diferencial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.diferencial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.diferencial-card:hover::before { transform: scaleX(1); }

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-soft, rgba(1, 34, 105, 0.08));
  color: var(--accent, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-circle svg { width: 25px; height: 25px; }
.icon-sm { width: 44px; height: 44px; flex-shrink: 0; margin-bottom: 0; border-radius: 13px; }
.icon-sm svg { width: 21px; height: 21px; }

.diferencial-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.diferencial-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Produtos ===== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.produto-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.produto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.produto-card:hover .photo-cover img { transform: scale(1.05); }

.produto-card .photo-produto { border-radius: 0; }
.produto-card .photo-placeholder { border-left: none; border-right: none; border-top: none; }

.produto-body { padding: 24px 24px 28px; }

.produto-tag {
  --tag: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 10px;
}
.produto-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--tag);
}

.produto-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.produto-card p { color: var(--text-muted); font-size: 0.97rem; }

/* ===== WEG banner ===== */
.weg-banner {
  position: relative;
  background:
    radial-gradient(ellipse 60% 90% at 85% 0%, rgba(46, 111, 242, 0.35), transparent 60%),
    linear-gradient(150deg, #032a80 0%, var(--navy-dark) 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(1, 23, 68, 0.35);
}

.weg-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 199, 44, 0.14);
  filter: blur(80px);
  top: -120px;
  left: -80px;
  pointer-events: none;
}

.weg-top { padding: 44px 48px 36px; position: relative; }

.weg-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(180deg, var(--gold), #f2b40b);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(255, 199, 44, 0.3);
}
.weg-badge svg { width: 13px; height: 13px; }

.weg-content { max-width: 580px; }
.weg-content h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.weg-content h3 span { color: var(--gold); }
.weg-content p { color: #c3cdec; font-size: 1.02rem; }

.weg-photo {
  width: 100%;
  aspect-ratio: 1916 / 821;
  background: var(--white);
}
.weg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Marcas (marquee) ===== */
.marcas-section { padding-bottom: 80px; }
.marcas-section .section-head { margin-bottom: 40px; }

.brand-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  padding: 10px 0;
}

.brand-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 28px;
  animation: brand-scroll 34s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }

.brand-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 18px 34px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.brand-item img {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.25s ease;
}
.brand-item:hover img { filter: grayscale(0) opacity(1); }

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

/* ===== Avaliações Google ===== */
.google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 32px;
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: left;
}

.google-g { width: 44px; height: 44px; flex-shrink: 0; }

.google-rating-info { flex: 1 1 220px; }
.google-rating-score { display: flex; align-items: center; gap: 12px; }
.google-rating-score strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.google-rating-info p { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); }
.stars-sm svg { width: 14px; height: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.review-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.review-head strong { display: block; color: var(--navy); font-size: 0.96rem; line-height: 1.3; }

.review-avatar {
  --avatar: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--avatar);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card > p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Seja Parceiro ===== */
.parceiro {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(46, 111, 242, 0.28), transparent 60%),
    linear-gradient(165deg, #032a80 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.parceiro-glow-1 { width: 380px; height: 380px; background: rgba(233, 30, 140, 0.2); top: -100px; right: -60px; }
.parceiro-glow-2 { width: 320px; height: 320px; background: rgba(255, 199, 44, 0.14); bottom: -120px; left: 30%; }

.parceiro { padding-bottom: 0; }

.parceiro-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.parceiro-text { max-width: 560px; display: flex; flex-direction: column; align-items: center; gap: 18px; }

.parceiro h2 { color: var(--white); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; }
.parceiro p { color: #c3cdec; font-size: 1.06rem; margin-bottom: 8px; }

/* mascote apoiado na borda inferior da seção */
.parceiro-media { flex: 0 0 auto; line-height: 0; }
.mascote-img {
  width: 350px;
  max-width: 78vw;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.35));
}

/* ===== Carrossel ===== */
.carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(1, 34, 105, 0.16);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.35, 1);
}

.carousel-slide { flex: 0 0 100%; min-width: 0; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-border);
  color: var(--navy);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.carousel-btn:hover { background: var(--navy); color: var(--white); transform: translateY(-50%) scale(1.06); }
.carousel-btn svg { width: 20px; height: 20px; }

.carousel-prev { left: -10px; }
.carousel-next { right: -10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cdd6ea;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.25s ease;
}
.carousel-dot.active { background: var(--navy); width: 26px; }

/* ===== Contato ===== */
.contato-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.contato .section-head-left { text-align: left; margin: 0 0 32px; }

.contato-lista { display: flex; flex-direction: column; gap: 14px; margin: 30px 0 34px; }

.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
a.contato-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.contato-item strong { color: var(--navy); font-weight: 700; }

/* ===== Footer ===== */
.footer { background: var(--navy-dark); color: #c3cdec; }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 56px 24px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.logo-footer {
  display: inline-flex;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
}
.logo-footer .logo-img { height: 46px; width: auto; }

.footer-brand p { margin-top: 12px; font-size: 0.9rem; max-width: 320px; }
.maps-link { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.3); transition: color 0.15s ease; }
.maps-link:hover { color: var(--gold); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.92rem; font-weight: 500; }
.footer-nav a { transition: color 0.15s ease; }
.footer-nav a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 20px; font-size: 0.92rem; font-weight: 700; }
.footer-social a { transition: color 0.15s ease; }
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding: 20px 24px;
  color: #8194cd;
}
.dev-link { color: #aab8e6; font-weight: 600; transition: color 0.15s ease; }
.dev-link:hover { color: var(--gold); }

/* ===== Animações de entrada ===== */
.anim {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.anim-1 { animation-delay: 0.05s; }
.anim-2 { animation-delay: 0.15s; }
.anim-3 { animation-delay: 0.28s; }
.anim-4 { animation-delay: 0.4s; }
.anim-5 { animation-delay: 0.52s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .brand-track, .mascote-img, .swatch-card { animation: none; }
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .carousel-prev { left: -24px; }
  .carousel-next { right: -24px; }
}

@media (min-width: 860px) {
  .btn-header { display: inline-flex; }
  .nav { display: flex; }
  .nav-toggle { display: none; }

  .hero { padding: 104px 0 120px; }
  .hero-inner { flex-direction: row; text-align: left; gap: 64px; }
  .hero-text { text-align: left; flex: 1; }
  .hero-actions, .hero-trust { justify-content: flex-start; }
  .hero-media { flex: 0 0 44%; }

  .contato-inner { grid-template-columns: 1.1fr 0.9fr; }

  .parceiro-inner { flex-direction: row; justify-content: center; align-items: flex-end; text-align: left; gap: 56px; }
  .parceiro-text { align-items: flex-start; text-align: left; align-self: center; padding-bottom: 48px; }
  .parceiro-media { align-self: flex-end; }
  .mascote-img { width: 420px; }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
    gap: 40px;
  }
  .footer-nav { flex-direction: column; gap: 12px; }
}

@media (min-width: 1024px) {
  .produtos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   AJUSTES / NOVOS COMPONENTES
   ============================================================ */

/* Logo do header (versão colorida com coroa) */
.logo-img { height: 56px; max-width: 62vw; }

/* Botões com texto longo podem quebrar em telas pequenas */
.hero-actions .btn,
.btn-cotar,
.calc-inner .btn,
.parceiro-cta .btn { white-space: normal; text-align: center; max-width: 100%; }
.hero-actions .btn { line-height: 1.25; }

/* ===== Hero: selo premium "40 anos", título rotativo e fine print ===== */
.selo40 {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
}

/* halo dourado pulsando atrás do selo */
.selo40-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.4) 0%, rgba(255, 199, 44, 0.12) 45%, transparent 70%);
  animation: selo-breathe 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes selo-breathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 0.55; }
}

/* anel externo: texto circular girando sobre aro metálico */
.selo40-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg,
      #8a5c00 0%, #e8a400 12%, #ffe9a3 22%, #ffc72c 34%,
      #a97400 48%, #e8a400 62%, #fff3c4 74%, #ffc72c 86%, #8a5c00 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 244, 200, 0.9),
    inset 0 0 12px rgba(90, 55, 0, 0.55);
  animation: selo-spin 26s linear infinite;
}
.selo40-ringtext {
  font-family: var(--font-body);
  font-size: 8.6px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: #4a3000;
}
@keyframes selo-spin {
  to { transform: rotate(360deg); }
}

/* núcleo: disco dourado com relevo */
.selo40-core {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--navy-dark);
  background:
    radial-gradient(circle at 32% 24%, #fff0b8 0%, #ffd75e 34%, #ffc72c 58%, #d99a00 100%);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.85),
    inset 0 -6px 14px rgba(122, 74, 0, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 249, 224, 0.95);
}

/* brilho metálico varrendo o núcleo */
.selo40-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg,
    transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
  animation: selo-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes selo-shine {
  0%, 55% { transform: translateX(-70%) rotate(8deg); }
  85%, 100% { transform: translateX(70%) rotate(8deg); }
}

.selo40-crown {
  width: 20px;
  height: 20px;
  color: var(--navy);
  margin-bottom: -2px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}
.selo40-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--navy);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), 0 3px 8px rgba(122, 74, 0, 0.35);
}
.selo40-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #5a3c00;
}

.hero-headline {
  min-height: 2.5em;
  margin: 0 0 24px;
}
.rotator {
  display: inline-block;
  color: inherit;
  font: inherit;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.rotator.is-out { opacity: 0; transform: translateY(10px); }

.hero-fineprint {
  margin-top: 22px;
  max-width: 560px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #93a2d1;
}

/* ===== Marcas (agora logo abaixo do hero) ===== */
.marcas-section { padding: 40px 0 44px; background: var(--white); border-bottom: 1px solid var(--gray-border); }
.marcas-titulo {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ===== Barra de benefícios ===== */
.beneficios { padding: 40px 0; background: var(--paper); border-bottom: 1px solid var(--gray-border); }
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.beneficio {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.beneficio:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.beneficio-icon {
  --accent: var(--navy);
  --accent-soft: rgba(1,34,105,0.08);
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.beneficio-icon svg { width: 24px; height: 24px; }
.beneficio h3 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.beneficio p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.4; }
.beneficio .destaque {
  color: var(--navy);
  font-weight: 800;
  background: linear-gradient(transparent 62%, #ffe29a 62%);
  padding: 0 2px;
  border-radius: 2px;
}

/* ===== Botão "Cotar esta linha" nos cards de produto ===== */
.produto-body { display: flex; flex-direction: column; }
.btn-cotar {
  margin-top: 18px;
  width: 100%;
  padding: 12px 18px;
  font-size: 0.92rem;
}
.btn-cotar .btn-icon { width: 18px; height: 18px; }

/* ===== Barra: calcule a quantidade ===== */
.calc-bar {
  position: relative;
  background:
    radial-gradient(ellipse 60% 120% at 15% 50%, rgba(46, 111, 242, 0.30), transparent 60%),
    linear-gradient(150deg, #032a80 0%, var(--navy) 55%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.calc-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255, 199, 44, 0.16);
  filter: blur(80px);
  top: -120px; right: 5%;
  pointer-events: none;
}
.calc-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 48px 24px;
}
.calc-text { display: flex; align-items: center; gap: 20px; }
.calc-icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-icon svg { width: 30px; height: 30px; }
.calc-text h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; margin-bottom: 6px; }
.calc-text p { color: #c3cdec; font-size: 1.02rem; max-width: 560px; }

/* ===== Selo de garantia (prova social) ===== */
.selo-garantia {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 40px;
  background: linear-gradient(180deg, #fff9e8 0%, #fff 100%);
  border: 1px solid rgba(232, 164, 0, 0.35);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow);
}
.selo-garantia-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  color: var(--gold-deep);
}
.selo-garantia-icon svg { width: 52px; height: 52px; }
.selo-garantia strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.selo-garantia span { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Programa Pintor Parceiro ===== */
.parceiro-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  text-align: center;
  padding-bottom: 96px;
}
.parceiro-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.parceiro-head { max-width: 640px; }
.parceiro-head h2 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; margin: 14px 0 12px; }
.parceiro-head p { color: #c3cdec; font-size: 1.08rem; }
.mascote-parceiro {
  width: 200px;
  max-width: 60vw;
  flex-shrink: 0;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

.parceiro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  text-align: left;
}
.parceiro-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.parceiro-card:hover { transform: translateY(-5px); border-color: rgba(255, 199, 44, 0.5); }
.parceiro-num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-dark);
  background: linear-gradient(180deg, var(--gold), #f2b40b);
  width: 42px; height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(255, 199, 44, 0.3);
}
.parceiro-card h3 { color: var(--white); font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.parceiro-card p { color: #c3cdec; font-size: 0.95rem; }

.parceiro-cta { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.parceiro-slogan {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* ===== Fale com a gente (fotos + mapa) ===== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.contato-fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.contato-foto {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contato-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.contato-foto:hover img { transform: scale(1.06); }
.contato-foto-main { grid-column: 1 / -1; grid-row: span 2; }

.contato-info { display: flex; flex-direction: column; gap: 20px; }
.contato-lista { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.contato-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow);
  line-height: 0;
}
.contato-mapa iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ===== Rodapé ===== */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { height: 54px; width: auto; margin-bottom: 10px; }
.footer-cnpj { font-size: 0.9rem; font-weight: 600; color: #aab8e6; }
.footer-endereco { font-size: 0.9rem; max-width: 340px; margin-top: 12px; line-height: 1.5; }
.footer-endereco strong { color: var(--gold); font-weight: 700; }
.footer-contato h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #c3cdec;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.footer-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-link:hover { color: var(--gold); }

/* ===== Responsivo dos novos componentes ===== */
@media (min-width: 760px) {
  .calc-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .calc-inner .btn { flex-shrink: 0; }
  .contato-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .contato-fotos { grid-auto-rows: 150px; }
}

@media (min-width: 860px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr auto;
    align-items: start;
    gap: 48px;
  }
  .parceiro-top {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 40px;
  }
  .parceiro-head { margin: 0; }
  .mascote-parceiro { width: 250px; }
  .selo40 { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .rotator { transition: none; }
  .selo40-ring, .selo40-shine, .selo40-glow { animation: none; }
}

/* ===== Ajuste DESKTOP: reduzir hero azul + selo p/ marcas aparecerem no 1º scroll ===== */
@media (min-width: 860px) {
  .hero { padding: 60px 0 64px; }

  .selo40 { width: 128px; height: 128px; margin: 0 0 6px; }
  .selo40-core { inset: 18px; }
  .selo40-num { font-size: 2.35rem; }
  .selo40-crown { width: 16px; height: 16px; }
  .selo40-label { font-size: 0.54rem; }

  .hero-headline { min-height: 2.4em; margin: 0 0 18px; }
  .hero-fineprint { margin-top: 16px; }
}

/* ===== Botão WhatsApp grande: ícone em badge circular p/ mais evidência (mobile + desktop) ===== */
.btn-whatsapp.btn-lg { gap: 13px; }
.btn-whatsapp.btn-lg .btn-icon {
  width: 22px;
  height: 22px;
  padding: 8px;
  box-sizing: content-box;
  background: #ffffff;
  color: #1EBE57;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(4, 60, 26, 0.28);
  flex-shrink: 0;
}

/* ===== Slideshow do hero: fotos da loja em transição (crossfade) ===== */
.hero-slideshow { position: relative; }
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
.hero-slideshow .hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide { transition: none; }
}
