/* Nota: a Recoleta original da marca é uma fonte paga (Latinotype).
   O arquivo em assets/fonts é uma DEMO com marca d'água nas letras,
   por isso usamos a Fraunces (Google Fonts, gratuita) como substituta
   visualmente próxima. Comprando a licença web da Recoleta, basta
   descomentar o @font-face abaixo e trocar 'Fraunces' por 'Recoleta'
   na variável --serif. */
/*
@font-face {
  font-family: 'Recoleta';
  src: url('../assets/fonts/Recoleta-RegularDEMO.otf') format('opentype');
  font-weight: 400 700;
  font-display: swap;
}
*/

:root {
  --cream: #F8F2E7;
  --cream-soft: #FBF6EC;
  --cream-deep: #EFE5D2;
  --navy: #1B3350;
  --navy-soft: #2E4E6E;
  --peach: #E3A17E;
  --peach-soft: #F1D3B8;
  --peach-deep: #C97C55;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(27, 51, 80, 0.12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Poppins', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); margin: 0 0 0.4em; font-weight: 600; line-height: 1.15; }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

#announcement {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 8px 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 242, 231, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27,51,80,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 44px; }
.main-nav {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--peach-deep);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.nav-cta {
  background: var(--peach-deep);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.85rem;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover { background: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-link svg { width: 20px; height: 20px; fill: var(--navy); }
.icon-link { display: flex; opacity: 0.85; transition: opacity .2s, transform .2s; }
.icon-link:hover { opacity: 1; transform: translateY(-1px); }

.cart-btn { position: relative; display: flex; }
.cart-btn svg { width: 24px; height: 24px; fill: none; stroke: var(--navy); stroke-width: 1.6; }
.cart-count {
  position: absolute; top: -8px; right: -9px;
  background: var(--peach-deep); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,35,55,.55) 0%, rgba(20,35,55,.35) 45%, rgba(20,35,55,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  opacity: 0.9;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: #fff;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 540px;
  margin: 0 auto 34px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--peach-deep); color: #fff; box-shadow: 0 8px 20px rgba(201,124,85,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,124,85,.45); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.8);
  border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0%{opacity:1; top:6px;} 70%{opacity:0; top:22px;} 100%{opacity:0; top:6px;} }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 44px;
  padding: 26px 24px;
  background: var(--cream-deep);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-soft);
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { font-size: 1.1rem; }

/* ---------- Sections ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 90px 24px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--peach-deep);
  margin-bottom: 10px;
}
.section-head h2, .sobre-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-sub { color: var(--navy-soft); font-size: 1rem; }

/* ---------- Filters ---------- */
.filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }
.filter-chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-deep);
  background: var(--cream-soft);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-soft);
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--peach); }
.filter-chip.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s, transform .5s, box-shadow .2s;
  cursor: pointer;
}
.product-card:hover { box-shadow: 0 16px 36px rgba(27,51,80,0.2); }
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card.hidden { display: none; }

.product-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream-deep); }
.product-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.product-img img.needs-rotate { object-fit: cover; transform: rotate(90deg) scale(1.34); }
.modal-main-img.needs-rotate { object-fit: cover; }
.product-img img.crop-cover { object-fit: cover; }
.modal-main-img.crop-cover { object-fit: cover; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(27,51,80,0.85); color: #fff;
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.product-photo-count {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.9); color: var(--navy);
  font-size: 0.68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}

.product-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-family: var(--serif); font-size: 1.3rem; margin: 0; }
.product-desc { font-size: 0.88rem; color: var(--navy-soft); margin: 0; }
.product-price { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--peach-deep); }
.product-view-link { font-size: 0.82rem; color: var(--navy-soft); margin-top: auto; }
.product-card:hover .product-view-link { color: var(--peach-deep); }

.color-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.color-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-soft); margin-right: 4px; }
.color-disclaimer { font-size: 0.74rem; color: var(--navy-soft); opacity: 0.8; margin: 8px 0 0; line-height: 1.4; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform .15s, border-color .15s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.active { border-color: var(--navy); transform: scale(1.15); }

.qty-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.qty-stepper { display: flex; align-items: center; gap: 10px; background: var(--cream-deep); border-radius: 999px; padding: 6px 8px; }
.qty-stepper button { width: 22px; height: 22px; border-radius: 50%; background: #fff; font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.qty-stepper span { min-width: 18px; text-align: center; font-weight: 600; font-size: 0.9rem; }

.add-cart-btn {
  background: var(--navy); color: var(--cream);
  padding: 11px 18px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.add-cart-btn:hover { background: var(--peach-deep); transform: translateY(-1px); }
.add-cart-btn.added { background: var(--whatsapp); }

/* ---------- Cores section ---------- */
.section-cores { background: var(--cream-deep); border-radius: 40px; margin: 0 24px 90px; max-width: 1152px; padding-bottom: 70px; }
.line-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.line-tab {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(27,51,80,0.15);
  background: var(--cream-soft);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-soft);
  transition: all .2s;
}
.line-tab:hover { border-color: var(--peach); }
.line-tab.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.line-sub { width: 100%; text-align: center; font-size: 0.82rem; color: var(--peach-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin: -10px 0 6px; }
.color-palette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.color-item { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 92px; }
.color-swatch-lg {
  width: 58px; height: 58px; border-radius: 50%;
  box-shadow: 0 6px 16px rgba(27,51,80,0.18), inset 0 0 0 1px rgba(0,0,0,0.06);
}
.color-item span { font-size: 0.76rem; text-align: center; color: var(--navy-soft); font-weight: 500; line-height: 1.3; }
.color-item small { font-size: 0.68rem; opacity: 0.7; font-weight: 400; }

.color-more { display: block; font-size: 0.76rem; color: var(--peach-deep); text-decoration: underline; margin-top: -4px; }

/* ---------- Pronta entrega ---------- */
.pronta-badge { background: var(--whatsapp-dark); }
.pronta-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pronta-placeholder span { background: rgba(255,255,255,0.85); color: var(--navy); font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.pronta-card .pronta-cta { margin-top: auto; justify-content: center; }
.pronta-card { cursor: default; }
.pronta-card .product-img { cursor: default; }

/* ---------- Tamanhos ---------- */
.section-tamanhos { text-align: center; }
.size-table-wrap { display: flex; justify-content: center; margin-bottom: 32px; overflow-x: auto; }
.size-table { border-collapse: collapse; background: var(--cream-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.size-table th, .size-table td { padding: 14px 26px; font-size: 0.92rem; }
.size-table th { background: var(--navy); color: var(--cream); font-family: var(--serif); font-weight: 600; }
.size-table td { border-bottom: 1px solid var(--cream-deep); color: var(--navy-soft); }
.size-table td:first-child { font-weight: 700; color: var(--navy); font-family: var(--serif); }
.size-table tr:last-child td { border-bottom: none; }
.size-help p { color: var(--navy-soft); margin-bottom: 16px; }

.size-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.size-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-soft); margin-right: 4px; }
.size-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--cream-deep);
  background: var(--cream-soft);
  font-size: 0.78rem; font-weight: 700; color: var(--navy-soft);
  transition: all .15s;
}
.size-btn:hover { border-color: var(--peach); }
.size-btn.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.size-guide-link { font-size: 0.76rem; color: var(--peach-deep); text-decoration: underline; }

/* ---------- Sobre ---------- */
.sobre-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.sobre-text p { color: var(--navy-soft); }
.sobre-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.sobre-list li { font-size: 0.95rem; color: var(--navy-soft); padding-left: 22px; position: relative; }
.sobre-list li::before { content: '〜'; position: absolute; left: 0; color: var(--peach-deep); font-weight: 700; }
.sobre-media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Contato ---------- */
.section-contato { text-align: center; }
.contato-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 32px;
  padding: 70px 40px;
  max-width: 720px;
  margin: 0 auto;
}
.contato-card .section-sub { color: rgba(248,242,231,0.75); }
.contato-card .eyebrow { color: var(--peach); }
.contato-card h2 { color: var(--cream); }
.contato-card .btn-whatsapp { margin-top: 12px; }
.social-row { margin-top: 26px; display: flex; gap: 10px; justify-content: center; font-weight: 500; opacity: 0.85; }
.social-row a:hover { color: var(--peach); }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 24px 30px;
  color: var(--navy-soft);
  font-size: 0.85rem;
}
.footer-logo { height: 32px; margin: 0 auto 12px; opacity: 0.8; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 8px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 22px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,30,45,0.45);
  opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 199;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 100%);
  background: var(--cream-soft); z-index: 200;
  transform: translateX(100%); transition: transform .35s ease;
  display: flex; flex-direction: column;
  box-shadow: -12px 0 30px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--cream-deep); }
.cart-header h3 { margin: 0; font-size: 1.3rem; }
.cart-header button { font-size: 1.8rem; line-height: 1; color: var(--navy-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-empty { text-align: center; color: var(--navy-soft); margin-top: 60px; font-size: 0.95rem; }
.cart-line { display: flex; gap: 12px; align-items: flex-start; border-bottom: 1px solid var(--cream-deep); padding-bottom: 14px; }
.cart-line img { width: 56px; height: 68px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-line-info { flex: 1; }
.cart-line-info .name { font-weight: 600; font-size: 0.92rem; }
.cart-line-info .meta { font-size: 0.78rem; color: var(--navy-soft); }
.cart-line-remove { font-size: 0.78rem; color: var(--peach-deep); text-decoration: underline; margin-top: 4px; }
.cart-line-price { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.cart-footer { padding: 20px 24px 26px; border-top: 1px solid var(--cream-deep); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; font-family: var(--serif); }
.cart-checkout { width: 100%; justify-content: center; }
.cart-note { font-size: 0.75rem; color: var(--navy-soft); text-align: center; margin-top: 10px; }

/* ---------- Product detail modal ---------- */
body.modal-lock { overflow: hidden; }
.modal-overlay {
  position: fixed; inset: 0; background: rgba(20,30,45,0.55);
  z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-panel {
  background: var(--cream-soft);
  border-radius: 24px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--navy);
  font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.modal-gallery { position: relative; background: var(--cream-deep); min-height: 420px; overflow: hidden; }
.modal-main-img { display: none; width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; }
.modal-main-img.active { display: block; }
.modal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.85); color: var(--navy);
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
}
.modal-arrow-prev { left: 12px; }
.modal-arrow-next { right: 12px; }
.modal-thumbs { display: flex; gap: 8px; margin-bottom: 6px; }
.modal-thumb { width: 46px; height: 56px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; }
.modal-thumb.active { border-color: var(--peach-deep); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 32px 30px; display: flex; flex-direction: column; gap: 14px; }
.modal-badge { position: static; align-self: flex-start; }
.modal-name { font-size: 1.7rem; margin: 0; }
.modal-desc { color: var(--navy-soft); margin: 0; font-size: 0.92rem; }
.modal-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--peach-deep); }
.modal-block { display: flex; flex-direction: column; gap: 8px; }
.modal-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-soft); }
.modal-label strong { color: var(--navy); text-transform: none; letter-spacing: 0; font-size: 0.95rem; }
.modal-block.qty-row { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 8px; }
.modal-block .add-cart-btn { flex: 1; text-align: center; }

@media (max-width: 760px) {
  .modal-panel { grid-template-columns: 1fr; max-height: 94vh; }
  .modal-gallery { min-height: 280px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-media { order: -1; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; top: 64px; left: 0; right: 0; background: var(--cream-soft); flex-direction: column; padding: 20px 24px; gap: 18px; box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .25s; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .header-actions .icon-link:not(:last-of-type) { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .section { padding: 64px 20px; }
  .contato-card { padding: 48px 24px; }
}
