/* ============================================================
   BORRACHA E CIA — main.css v2.4
   Paleta: Ciano #00C9D6 + Preto #000000 + Branco #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --brand-primary:  #00C9D6;
  --brand-primary-d:#009EAA;
  --brand-dark:     #000000;
  --brand-gray:     #111111;
  --mid-gray:       #5A6068;
  --light-gray:     #F0F1F3;
  --border:         #DDE0E4;
  --white:          #FFFFFF;
  --text:           #1A1C1E;
  --text-muted:     #5A6068;
  --header-h:       72px;
  --radius:         4px;
  --radius-lg:      8px;
  --shadow:         0 2px 12px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.14);
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'Source Sans 3', sans-serif;
  --container:      1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-primary); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

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

/* ══════════════════════════════════════════════════════════
   HEADER — fundo azul ciano, padding superior
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--brand-primary);
  padding: 6px 0 0;          /* descolado 6px da borda superior */
  box-shadow: 0 2px 12px rgba(0,201,214,.35);
}
.header-inner {
  display: flex; align-items: center;
  height: var(--header-h); gap: 20px;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 40px; width: auto; }
.site-logo-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: #000; letter-spacing: .5px; text-transform: uppercase;
}
.site-logo-text span { color: rgba(0,0,0,.55); }
.site-logo-text:hover { color: #000; }

/* Busca */
.header-search { flex: 1; max-width: 460px; }
.header-search form {
  display: flex;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.header-search form:focus-within {
  background: rgba(0,0,0,.18);
  border-color: rgba(0,0,0,.35);
}
.header-search input {
  flex: 1; background: transparent; border: none;
  padding: 10px 14px; color: #000; outline: none; font-size: 14px;
}
.header-search input::placeholder { color: rgba(0,0,0,.5); }
.header-search button {
  background: #000; border: none; padding: 0 16px;
  color: var(--brand-primary); cursor: pointer;
  display: flex; align-items: center; transition: background .2s;
}
.header-search button svg { display: block; }
.header-search button:hover { background: #222; }

/* Ações */
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-phone { color: rgba(0,0,0,.75); font-size: 14px; white-space: nowrap; font-weight: 600; }
.header-phone strong { color: #000; }
.header-phone-mobile {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.18); border-radius: var(--radius);
  color: #000; text-decoration: none; transition: background .2s; flex-shrink: 0;
}
.header-phone-mobile:hover { background: rgba(0,0,0,.2); color: #000; }

.btn-orcamento-header {
  display: flex; align-items: center; gap: 8px;
  background: #000; color: var(--brand-primary) !important;
  padding: 9px 16px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: .3px; text-transform: uppercase;
  white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.btn-orcamento-header:hover { background: #222; color: var(--brand-primary) !important; }
.btn-orcamento-header .badge {
  background: var(--brand-primary); color: #000;
  border-radius: 10px; padding: 1px 6px;
  font-size: 11px; font-weight: 700; min-width: 18px; text-align: center;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; width: 36px; height: 36px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px;
  background: #000; border-radius: 2px; transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   NAV — espaçada, letras maiores, ícones SVG
══════════════════════════════════════════════════════════ */
.site-nav { background: var(--brand-gray); border-top: 1px solid rgba(255,255,255,.06); }
.nav-list { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { display: flex; align-items: stretch; position: relative; }

/* Link padrão da nav */
.site-nav .nav-list a,
.nav-more-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;                      /* mais espaçado */
  color: rgba(255,255,255,.82);
  font-size: 14px; font-weight: 700;       /* letras maiores */
  text-transform: uppercase; letter-spacing: .6px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav .nav-list a .nav-icon,
.nav-more-btn .nav-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--brand-primary); opacity: .8;
  transition: opacity .2s;
}
.site-nav .nav-list a:hover .nav-icon,
.nav-more-btn:hover .nav-icon { opacity: 1; }

.site-nav .nav-list a:hover,
.site-nav .nav-list a.active {
  color: var(--brand-primary); border-bottom-color: var(--brand-primary);
}
.nav-link-destaque { color: var(--brand-primary) !important; font-weight: 800 !important; }

/* Dropdown "Ver mais" */
.nav-item-dropdown { position: relative; display: flex; align-items: stretch; }
.nav-more-btn {
  background: none; border: none; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav-more-btn:hover { color: var(--brand-primary); border-bottom-color: var(--brand-primary); }
.nav-more-btn .nav-chevron { transition: transform .2s; width: 12px; height: 12px; flex-shrink: 0; }
.nav-more-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 230px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); z-index: 300; padding: 6px 0;
}
.nav-dropdown.open { display: block; }
.nav-dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 13px; color: var(--text); font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-dropdown-link:hover { background: var(--light-gray); color: var(--brand-primary); }
.nav-dropdown-link svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--brand-primary); opacity: .7; }
.nav-dropdown-all {
  display: block; padding: 10px 18px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--brand-primary); border-top: 1px solid var(--border); margin-top: 4px;
}
.nav-dropdown-all:hover { background: var(--light-gray); }

/* ══════════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════════ */
.breadcrumb { background: var(--light-gray); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 13px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--mid-gray); }
.breadcrumb a { color: var(--brand-primary); }
.breadcrumb span { color: var(--mid-gray); }

/* ══════════════════════════════════════════════════════════
   HERO (fallback para páginas sem carrossel)
══════════════════════════════════════════════════════════ */
.hero {
  background: var(--brand-dark); color: var(--white);
  padding: 80px 0 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/img/hero-pattern.svg') repeat; opacity: .04;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-primary); color: #000;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius); margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; line-height: 1.08; text-transform: uppercase;
  letter-spacing: -1px; margin-bottom: 20px; color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--brand-primary); }
.hero p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-feature { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 20px; }
.hero-feature-icon { font-size: 28px; margin-bottom: 10px; }
.hero-feature h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; color: var(--brand-primary); }
.hero-feature p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; border: none;
  cursor: pointer; transition: background .2s, transform .1s; white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--brand-primary); color: #000; font-weight: 700; }
.btn-primary:hover { background: var(--brand-primary-d); color: #000; }
.btn-dark { background: #000; color: var(--brand-primary); }
.btn-dark:hover { background: #222; color: var(--brand-primary); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.btn-outline-dark { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }
.btn-outline-dark:hover { background: var(--brand-primary); color: #000; font-weight: 700; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1EBE57; color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* WhatsApp SVG inline */
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SEÇÕES
══════════════════════════════════════════════════════════ */
.section { padding: 64px 0; }
.section-gray { background: var(--light-gray); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; color: var(--brand-dark); margin-bottom: 12px; }
.section-header h2 span { color: var(--brand-primary); }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════
   CARROSSEL HERO
══════════════════════════════════════════════════════════ */
.hero-carousel { position: relative; overflow: hidden; background: var(--brand-dark); }
.carousel-track { display: flex; transition: transform .5s ease; }
.carousel-slide {
  min-width: 100%; padding: 80px 0 72px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* Overlay escuro sobre a imagem de fundo para o texto ficar legível */
.carousel-slide::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.6); z-index: 0; pointer-events: none;
}
.carousel-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.carousel-text { max-width: 640px; }
.carousel-text .hero-tag { margin-bottom: 16px; }
.carousel-text h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); font-weight: 800; line-height: 1.06; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 20px; color: var(--white); }
.carousel-text h1 em { font-style: normal; color: var(--brand-primary); }
.carousel-text p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.carousel-text .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.carousel-badge-wrap { flex-shrink: 0; }
.carousel-badge { width: 150px; height: 150px; border-radius: 50%; background: var(--brand-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; animation: badgePulse 2.5s infinite; }
.badge-pct { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: #000; line-height: 1; }
.badge-txt { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #000; text-transform: uppercase; line-height: 1.3; }
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.carousel-prev, .carousel-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: var(--white); font-size: 28px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background .2s; }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(255,255,255,.3); }
.carousel-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s, transform .2s; }
.carousel-dot.active { background: var(--brand-primary); transform: scale(1.2); }

/* ══════════════════════════════════════════════════════════
   BARRA DE BENEFÍCIOS
══════════════════════════════════════════════════════════ */
.beneficios-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.beneficios-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.beneficio-item { display: flex; align-items: center; gap: 14px; padding: 12px 20px; border-right: 1px solid var(--border); }
.beneficio-item:last-child { border-right: none; }
.beneficio-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--brand-primary); }
.beneficio-icon svg { width: 100%; height: 100%; }
.beneficio-text { display: flex; flex-direction: column; gap: 2px; }
.beneficio-text strong { font-size: 14px; font-weight: 700; color: var(--brand-dark); }
.beneficio-text span { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   CATEGORIAS COM FOTO
══════════════════════════════════════════════════════════ */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; padding: 0; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s, transform .2s; cursor: pointer; }
.category-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.category-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e0e2e5, #cdd0d5); }
.category-card-body { padding: 14px 16px 18px; text-align: center; }
.category-card-body h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 4px; letter-spacing: .3px; }
.category-card-body .count { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   GRID DE PRODUTOS
══════════════════════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card-image { aspect-ratio: 4/3; background: var(--light-gray); overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .3s; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brand-primary); margin-bottom: 5px; }
.product-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; line-height: 1.3; flex: 1; }
.product-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-actions { display: flex; gap: 8px; }
.btn-add-orcamento-wrap { position: relative; flex: 1; }
.btn-add-orcamento { width: 100%; background: var(--light-gray); color: var(--brand-dark); border: 1px solid var(--border); padding: 8px; border-radius: var(--radius); font-size: 12px; font-weight: 700; font-family: var(--font-display); text-transform: uppercase; cursor: pointer; transition: background .2s, border-color .2s; display: flex; align-items: center; justify-content: center; gap: 4px; }
.btn-add-orcamento:hover { background: #E0F9FB; border-color: var(--brand-primary); color: var(--brand-primary); }
.btn-add-orcamento.added { background: #E8F5E9; border-color: #4CAF50; color: #2E7D32; }
.orcamento-hint { display: block; font-size: 10px; color: var(--text-muted); margin-top: 3px; line-height: 1.3; text-align: center; }
.btn-wa-card { background: #25D366; color: var(--white); border: none; padding: 8px 11px; border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; transition: background .2s; flex-shrink: 0; }
.btn-wa-card svg { width: 16px; height: 16px; }
.btn-wa-card:hover { background: #1EBE57; color: var(--white); }

/* ══════════════════════════════════════════════════════════
   DESTAQUE 1+4
══════════════════════════════════════════════════════════ */
.destaque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.destaque-principal { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s; }
.destaque-principal:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); color: inherit; }
.destaque-principal-img { aspect-ratio: 4/3; background: var(--light-gray); overflow: hidden; }
.destaque-principal-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .35s; }
.destaque-principal:hover .destaque-principal-img img { transform: scale(1.04); }
.destaque-principal-body { padding: 20px 22px 24px; }
.destaque-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brand-primary); display: block; margin-bottom: 8px; }
.destaque-principal-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 10px; line-height: 1.2; }
.destaque-principal-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.destaque-cta { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--brand-primary); }
.destaque-secundarios { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.destaque-sec-item { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .15s, transform .15s; }
.destaque-sec-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.destaque-sec-img { aspect-ratio: 4/3; background: var(--light-gray); overflow: hidden; }
.destaque-sec-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .3s; }
.destaque-sec-item:hover .destaque-sec-img img { transform: scale(1.05); }
.destaque-sec-body { padding: 10px 12px 12px; display: flex; justify-content: space-between; align-items: flex-end; gap: 8px; }
.destaque-sec-body h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--brand-dark); line-height: 1.3; }
.destaque-sec-body span { font-size: 12px; font-weight: 700; color: var(--brand-primary); white-space: nowrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════════════════ */
.diferenciais { background: var(--brand-dark); color: var(--white); }
.diferenciais-grid-linha { display: grid; grid-template-columns: repeat(6, 1fr); }
.dif-item { text-align: center; padding: 32px 16px; border-right: 1px solid rgba(255,255,255,.08); transition: background .2s; }
.dif-item:last-child { border-right: none; }
.dif-item:hover { background: rgba(255,255,255,.04); }
.dif-svg-icon { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--brand-primary); }
.dif-svg-icon svg { width: 100%; height: 100%; }
.dif-item h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 8px; }
.dif-item p { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   SOB MEDIDA CTA
══════════════════════════════════════════════════════════ */
.sob-medida-cta { background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-d) 100%); color: #000; padding: 64px 0; text-align: center; }
.sob-medida-cta h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.sob-medida-cta p { font-size: 17px; opacity: .75; max-width: 560px; margin: 0 auto 32px; }

/* ══════════════════════════════════════════════════════════
   SEGMENTOS
══════════════════════════════════════════════════════════ */
.segmentos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.segmento-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 16px; text-align: center; transition: border-color .2s, transform .2s; }
.segmento-item:hover { border-color: var(--brand-primary); transform: translateY(-2px); }
.segmento-icon { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--brand-primary); }
.segmento-icon svg { width: 100%; height: 100%; }
.segmento-item strong { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--brand-dark); }

/* ══════════════════════════════════════════════════════════
   PÁGINA DE PRODUTO
══════════════════════════════════════════════════════════ */
.product-page { padding: 40px 0 64px; }
.product-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-h) + 16px); }
.product-main-img { background: var(--light-gray); border-radius: var(--radius-lg); aspect-ratio: 4/3; overflow: hidden; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; padding: 16px; }
.product-main-img img { max-height: 100%; object-fit: contain; transition: transform .3s; }
.product-thumb-row { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumb { width: 72px; height: 72px; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color .2s; padding: 4px; background: var(--light-gray); }
.product-thumb.active, .product-thumb:hover { border-color: var(--brand-primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info h1 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 800; text-transform: uppercase; color: var(--brand-dark); line-height: 1.15; margin-bottom: 12px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; font-size: 13px; color: var(--text-muted); }
.product-meta span strong { color: var(--brand-dark); }
.product-meta a:hover { color: var(--brand-primary); }
.product-short-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.product-cta-box { background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.product-cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.product-cta-box .btn { width: 100%; margin-bottom: 10px; justify-content: center; }
.product-tabs { margin-top: 32px; }
.tab-list { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tab-btn { background: none; border: none; padding: 12px 20px; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color .2s, border-color .2s; white-space: nowrap; }
.tab-btn.active, .tab-btn:hover { color: var(--brand-primary); border-bottom-color: var(--brand-primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(even) td { background: var(--light-gray); }
.spec-table td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border); }
.spec-table td:first-child { font-weight: 600; color: var(--brand-dark); width: 40%; }
.spec-table td:last-child { color: var(--text-muted); }

/* Seção de relacionados na página de produto */
.related-section { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.related-section h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 28px; color: var(--brand-dark); }
.related-section h2 span { color: var(--brand-primary); }

/* ══════════════════════════════════════════════════════════
   ORÇAMENTO
══════════════════════════════════════════════════════════ */
.orcamento-page { padding: 48px 0 80px; }
.orcamento-empty { text-align: center; padding: 80px 20px; }
.orcamento-empty .icon { font-size: 64px; margin-bottom: 16px; opacity: .4; }
.orcamento-empty h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.orcamento-empty p { color: var(--text-muted); margin-bottom: 24px; }
.orcamento-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.orcamento-table th { background: var(--brand-dark); color: var(--white); padding: 12px 16px; text-align: left; font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.orcamento-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.orcamento-table tr:hover td { background: var(--light-gray); }
.orcamento-item-img { width: 60px; height: 60px; object-fit: contain; background: var(--light-gray); border-radius: var(--radius); padding: 4px; }
.orcamento-actions { display: flex; gap: 16px; justify-content: space-between; align-items: center; padding-top: 8px; }

/* ══════════════════════════════════════════════════════════
   FORMULÁRIOS
══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .3px; }
.form-label .req { color: var(--brand-primary); margin-left: 2px; }
.form-control { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; font-size: 15px; color: var(--text); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-control:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(0,201,214,.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.form-check input[type="checkbox"], .form-check input[type="radio"] { width: 18px; height: 18px; accent-color: var(--brand-primary); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.alert-error { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
══════════════════════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-float-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.wa-float-btn svg { width: 28px; height: 28px; }
.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.wa-float-label { background: var(--brand-dark); color: var(--white); font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: var(--radius); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .7; } }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--brand-dark); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand-primary); margin-bottom: 20px; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: var(--brand-primary); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item .icon { font-size: 16px; margin-top: 2px; flex-shrink: 0; color: var(--brand-primary); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   PAGINAÇÃO, BUSCA, 404, MISC
══════════════════════════════════════════════════════════ */
.pagination { display: flex; gap: 4px; justify-content: center; align-items: center; padding: 32px 0; flex-wrap: wrap; }
.page-link { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--text); transition: background .2s; }
.page-link:hover { background: var(--light-gray); }
.page-link.active { background: var(--brand-primary); border-color: var(--brand-primary); color: #000; font-weight: 700; }
.page-link.disabled { opacity: .4; pointer-events: none; }
.search-header { padding: 32px 0 24px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.search-header h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; }
.search-header h1 span { color: var(--brand-primary); }
.result-count { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.page-404 { text-align: center; padding: 120px 20px; }
.page-404 h1 { font-family: var(--font-display); font-size: 120px; font-weight: 800; color: var(--brand-primary); line-height: 1; }
.page-404 h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.page-404 p { color: var(--text-muted); margin-bottom: 32px; }
.product-structured-badge { display: inline-block; background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius); font-size: 11px; padding: 3px 8px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.catalog-empty-banner { background: var(--brand-dark); color: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; margin: 32px 0; }
.section-gray { background: var(--light-gray); }

/* Sob medida steps */
.sob-medida-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-bottom: 48px; }
.step-item { text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-primary); color: #000; font-family: var(--font-display); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-item h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; color: var(--brand-dark); }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Confirmação */
.confirmation-page { max-width: 560px; margin: 64px auto; text-align: center; padding: 0 20px; }
.confirmation-icon { width: 80px; height: 80px; background: #E8F5E9; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 24px; }
.confirmation-page h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 12px; }
.step-next-num { width: 24px; height: 24px; background: var(--brand-primary); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-features { display: none; }
  .diferenciais-grid-linha { grid-template-columns: repeat(3, 1fr); }
  .dif-item:nth-child(3) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .destaque-grid { grid-template-columns: 1fr; }
  .carousel-badge-wrap { display: none; }
}

@media (max-width: 900px) {
  .beneficios-grid { grid-template-columns: 1fr 1fr; }
  .beneficio-item:nth-child(2) { border-right: none; }
  .beneficio-item:nth-child(1), .beneficio-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .segmentos-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-phone { display: none; }
  .header-phone-mobile { display: flex !important; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-toggle { display: flex; }
  .carousel-slide { padding: 52px 0 60px; }
  .carousel-text h1 { font-size: 32px; }
  .carousel-text p { font-size: 15px; }
  .diferenciais-grid-linha { grid-template-columns: repeat(2, 1fr); }
  .dif-item { border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .dif-item:nth-child(even) { border-right: none; }
  .destaque-secundarios { grid-template-columns: 1fr 1fr; }
  .segmentos-grid { grid-template-columns: repeat(2, 1fr); }
  .beneficios-grid { grid-template-columns: 1fr; }
  .beneficio-item { border-right: none; border-bottom: 1px solid var(--border); }
  .beneficio-item:last-child { border-bottom: none; }
  .section { padding: 48px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .orcamento-table thead { display: none; }
  .orcamento-table td { display: block; padding: 8px 12px; }
  .orcamento-table td::before { content: attr(data-label) ': '; font-weight: 700; color: var(--brand-dark); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .segmentos-grid { grid-template-columns: repeat(2, 1fr); }
  .destaque-secundarios { grid-template-columns: 1fr; }
  .carousel-prev, .carousel-next { display: none; }
  .wa-float { bottom: 16px; right: 16px; }
}
