:root {
  --white: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef2f8;
  --ink: #101828;
  --muted: #5d6778;
  --line: #e3e8ef;
  --blue: #26388c;
  --blue-light: #66afe2;
  --red: #d82035;
  --red-dark: #b81128;
  --green: #25d366;
  --green-dark: #128c4d;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-sm: 0 10px 35px rgba(16, 24, 40, .08);
  --shadow-lg: 0 26px 80px rgba(23, 32, 61, .14);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 2000;
  padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section--soft { background: var(--surface); }
.section--compact { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: .8rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--red); }
.section-heading { max-width: 730px; margin-bottom: 42px; }
.section-heading h2 { margin: 10px 0 14px; font-size: clamp(2.15rem, 5vw, 4.3rem); line-height: 1.04; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); margin: 0; font-size: 1.08rem; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: .25s ease;
}
.site-header.has-shadow { border-color: var(--line); box-shadow: 0 6px 25px rgba(16,24,40,.05); }
.header-row { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-text strong { display: block; font-size: 1.13rem; line-height: 1.1; }
.brand-text span { display: block; font-size: .72rem; color: var(--muted); font-weight: 700; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav > a { font-size: .93rem; font-weight: 750; color: #344054; transition: color .2s; }
.main-nav > a:hover, .main-nav > a:focus-visible { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: white; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 10px; transition: .2s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 850; letter-spacing: -.01em; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn img { width: 20px; height: 20px; }
.btn--primary { background: var(--red); color: white; box-shadow: 0 12px 30px rgba(216,32,53,.22); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 16px 38px rgba(216,32,53,.3); }
.btn--outline { border-color: #cfd6e1; background: white; color: var(--ink); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--whatsapp { background: var(--green); color: #062d16; box-shadow: 0 12px 32px rgba(37,211,102,.24); }
.btn--whatsapp img { filter: brightness(0); }
.btn--dark { background: var(--ink); color: white; }
.btn--install { background: #eef2ff; color: var(--blue); border-color: #dce3ff; }
.btn--small { min-height: 44px; padding-inline: 18px; font-size: .9rem; }

.hero { position: relative; overflow: hidden; padding: 72px 0 80px; min-height: 720px; display: grid; align-items: center; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; }
.hero::before { width: 430px; height: 430px; background: #eef2ff; top: -170px; left: -150px; }
.hero::after { width: 380px; height: 380px; background: #fff0f2; right: -120px; bottom: -120px; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 54px; }
.hero-copy h1 { margin: 14px 0 20px; font-size: clamp(3.25rem, 7.2vw, 6.7rem); line-height: .92; letter-spacing: -.075em; max-width: 760px; }
.hero-copy h1 span { display: block; color: var(--red); }
.hero-copy p { margin: 0 0 30px; max-width: 600px; color: var(--muted); font-size: clamp(1.03rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; color: #475467; font-weight: 740; font-size: .9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta img { width: 20px; }
.hero-visual { position: relative; }
.hero-visual::before { content: "PEDALE"; position: absolute; z-index: -1; left: -8%; top: 6%; color: #eef1f5; font-size: clamp(5rem, 13vw, 12rem); font-weight: 950; letter-spacing: -.08em; white-space: nowrap; }
.hero-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transform: rotate(-1.2deg); }
.hero-badge {
  position: absolute; right: -18px; bottom: -24px; width: 170px; height: 170px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; padding: 22px; background: var(--ink); color: white; border: 8px solid white; box-shadow: var(--shadow-sm);
  font-weight: 850; line-height: 1.2;
}
.hero-badge span { color: var(--blue-light); font-size: 1.35rem; }

.trust-strip { padding: 24px 0; border-block: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 12px 18px; }
.icon-box { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: #eef2ff; color: var(--blue); }
.icon-box--red { background: #fff0f2; color: var(--red); }
.icon-box img { width: 24px; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: #ccd6e5; }
.card .card-number { position: absolute; right: 18px; top: 12px; font-size: 4.3rem; font-weight: 950; color: #f0f2f6; line-height: 1; }
.card h3 { margin: 18px 0 10px; font-size: 1.35rem; letter-spacing: -.035em; }
.card p { margin: 0 0 20px; color: var(--muted); }
.card-link { display: inline-flex; gap: 8px; align-items: center; color: var(--red); font-weight: 850; }
.card-link img { width: 18px; transition: transform .2s; }
.card:hover .card-link img { transform: translateX(5px); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media::after { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 2px solid #dbe3ef; border-radius: var(--radius-lg); z-index: -1; }
.feature-list { display: grid; gap: 14px; margin: 28px 0; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.feature .icon-box { width: 44px; height: 44px; }
.feature strong { display: block; margin-bottom: 3px; }
.feature span { color: var(--muted); font-size: .92rem; }

.catalog-panel {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .95fr; gap: 30px; align-items: center;
  padding: 42px; border-radius: var(--radius-lg); background: var(--ink); color: white;
  box-shadow: var(--shadow-lg);
}
.catalog-panel::before { content: "REVISÃO"; position: absolute; right: -10px; top: -40px; font-size: 8rem; line-height: 1; font-weight: 950; color: rgba(255,255,255,.04); }
.catalog-panel h2 { margin: 10px 0 16px; font-size: clamp(2rem,4.5vw,4rem); line-height: 1; letter-spacing: -.055em; }
.catalog-panel p { color: #cbd2dd; max-width: 620px; }
.catalog-panel .eyebrow { color: #ff8b9a; }
.catalog-panel .eyebrow::before { background: #ff8b9a; }
.catalog-panel img.catalog-image { width: 100%; border-radius: 28px; border: 1px solid rgba(255,255,255,.1); }

.about-copy blockquote { margin: 28px 0 0; padding: 20px 24px; border-left: 4px solid var(--red); background: var(--surface); border-radius: 0 18px 18px 0; color: #344054; font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-card { position: relative; overflow: hidden; border: 0; padding: 0; background: #eee; border-radius: 24px; min-height: 260px; }
.gallery-card:nth-child(1), .gallery-card:nth-child(4) { grid-column: span 7; }
.gallery-card:nth-child(2), .gallery-card:nth-child(3) { grid-column: span 5; }
.gallery-card:nth-child(5), .gallery-card:nth-child(6) { grid-column: span 6; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-overlay { position: absolute; inset: auto 0 0; padding: 28px 22px 18px; color: white; text-align: left; background: linear-gradient(transparent, rgba(8,15,32,.82)); }
.gallery-overlay strong { display: block; }
.gallery-overlay span { font-size: .84rem; color: #e4e7ec; }

.location-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.map-card, .contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; min-height: 560px; border: 0; display: block; }
.contact-card { padding: 34px; }
.open-status { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border-radius: 999px; background: #f2f4f7; font-size: .87rem; font-weight: 850; }
.open-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #98a2b3; }
.open-status.is-open { background: #e9fbf0; color: #0a6b35; }
.open-status.is-open::before { background: #20b15a; box-shadow: 0 0 0 5px rgba(32,177,90,.13); }
.open-status.is-closed { background: #fff1f2; color: #9f1239; }
.open-status.is-closed::before { background: #e11d48; }
.contact-info { display: grid; gap: 18px; margin: 26px 0; }
.contact-line { display: grid; grid-template-columns: 38px 1fr; gap: 12px; }
.contact-line img { width: 22px; margin-top: 3px; }
.contact-line strong { display: block; }
.contact-line span, .contact-line a { color: var(--muted); }
.hours { width: 100%; border-collapse: collapse; margin: 20px 0 26px; font-size: .9rem; }
.hours td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 800; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.app-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 32px 38px; border: 1px solid #dce3ff; border-radius: var(--radius-md); background: linear-gradient(120deg, #f7f8ff, #fff5f6); }
.app-banner h3 { margin: 0 0 6px; font-size: 1.5rem; }
.app-banner p { margin: 0; color: var(--muted); }

.site-footer { padding: 56px 0 100px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-brand { max-width: 400px; }
.footer-brand .brand img { width: 72px; height: 72px; }
.footer-brand p { color: #aeb7c5; }
.footer-title { font-weight: 900; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; color: #cbd2dd; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #98a2b3; font-size: .85rem; }

.whatsapp-float {
  position: fixed; z-index: 1100; right: 24px; bottom: 24px; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green); color: white; box-shadow: 0 14px 40px rgba(18,140,77,.38); transition: transform .2s;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float img { width: 33px; filter: brightness(0) invert(1); }
.whatsapp-float::before { content: "Fale com a Bike Torres"; position: absolute; right: 72px; white-space: nowrap; padding: 8px 12px; border-radius: 10px; background: var(--ink); color: white; font-size: .78rem; font-weight: 800; opacity: 0; transform: translateX(8px); pointer-events: none; transition: .2s; }
.whatsapp-float:hover::before { opacity: 1; transform: none; }

.mobile-bar { display: none; }

.dialog { border: 0; border-radius: 28px; padding: 0; max-width: min(900px, calc(100% - 30px)); box-shadow: 0 35px 120px rgba(8,15,32,.28); }
.dialog::backdrop { background: rgba(8,15,32,.72); backdrop-filter: blur(5px); }
.dialog-content { position: relative; padding: 22px; background: white; }
.dialog-close { position: absolute; z-index: 2; right: 14px; top: 14px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: white; font-size: 1.4rem; }
#gallery-lightbox img { max-height: 72vh; width: 100%; object-fit: contain; border-radius: 18px; }
#lightbox-caption { margin: 14px 8px 2px; font-weight: 800; }
.ios-content { max-width: 520px; padding: 38px; }
.ios-content h3 { font-size: 1.7rem; margin: 0 0 12px; }
.ios-content ol { color: var(--muted); padding-left: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 82px 0 0; display: none; flex-direction: column; align-items: stretch; padding: 30px 24px; background: white; }
  .main-nav.is-open { display: flex; }
  .main-nav > a { font-size: 1.35rem; padding: 8px 0; }
  .main-nav .btn { margin-top: 12px; }
  .header-actions .btn:not(.btn--install) { display: none; }
  .menu-button { display: block; }
  .hero-grid, .split, .catalog-panel, .location-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media { order: 2; }
  .catalog-panel { padding: 34px; }
  .gallery-card, .gallery-card:nth-child(n) { grid-column: span 6; }
  .map-card iframe { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 24px, 1180px); }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 30px; }
  .brand-text span { display: none; }
  .header-row { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .main-nav { inset: 72px 0 0; }
  .header-actions .btn--install { width: 44px; min-height: 44px; padding: 0; font-size: 0; }
  .header-actions .btn--install img { width: 21px; }
  .hero-copy h1 { font-size: clamp(3.05rem, 16vw, 4.4rem); }
  .hero-actions .btn { width: 100%; }
  .hero-meta { flex-direction: column; gap: 10px; align-items: center; }
  .hero-badge { width: 132px; height: 132px; right: -2px; bottom: -38px; font-size: .78rem; border-width: 6px; }
  .trust-grid, .card-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 8px 4px; }
  .split { gap: 44px; }
  .split-media::after { inset: 14px -8px -14px 8px; }
  .catalog-panel { padding: 28px 22px; }
  .gallery-grid { gap: 10px; }
  .gallery-card, .gallery-card:nth-child(n) { grid-column: 1 / -1; min-height: 240px; }
  .contact-card { padding: 26px 20px; }
  .app-banner { align-items: stretch; flex-direction: column; padding: 26px 22px; }
  .app-banner .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .whatsapp-float { right: 16px; bottom: 82px; width: 56px; height: 56px; }
  .whatsapp-float::before { display: none; }
  .mobile-bar {
    position: fixed; z-index: 1050; inset: auto 0 0; display: grid; grid-template-columns: repeat(3,1fr); min-height: 66px;
    background: rgba(255,255,255,.96); border-top: 1px solid var(--line); box-shadow: 0 -10px 35px rgba(16,24,40,.08); backdrop-filter: blur(14px);
  }
  .mobile-bar a { display: grid; place-items: center; align-content: center; gap: 3px; color: #344054; font-size: .7rem; font-weight: 850; }
  .mobile-bar img { width: 22px; }
  .mobile-bar .wa { color: var(--green-dark); }
  .site-footer { padding-bottom: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Bicicletas em destaque — gerenciadas pelo painel */
.products-section { background: #fff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(16, 24, 40, .075);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 56, 139, .28);
  box-shadow: 0 26px 58px rgba(16, 24, 40, .12);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f8ff, #fff4f6);
}
.product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 12% 4% 12%;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 24, 40, .10);
  filter: blur(12px);
  pointer-events: none;
}
.product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .45s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 24, 40, .92);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .18);
}
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 24px 24px;
}
.product-card__body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.product-card__body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.62;
}
.btn--product {
  width: 100%;
  margin-top: auto;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(227, 27, 54, .19);
}
.btn--product:hover { background: #bd1029; transform: translateY(-2px); }
.btn--product img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.products-note {
  margin-top: 26px;
  padding: 23px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(90deg, #f6f7ff, #fff5f6);
}
.products-note strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 1.05rem; }
.products-note span { color: var(--muted); font-size: .92rem; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card__body { padding: 22px 20px 20px; }
  .products-note { align-items: stretch; flex-direction: column; padding: 22px 20px; }
  .products-note .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card__media img { transition: none !important; transform: none !important; }
}

/* Ajustes finais de identidade e navegação — julho/2026 */
.site-header .container { width: min(1360px, calc(100% - 40px)); }
.brand { flex: 0 0 auto; white-space: nowrap; }
.brand-mark {
  width: 82px;
  height: 56px;
  flex: 0 0 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: #050505;
  box-shadow: 0 8px 24px rgba(16,24,40,.12);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { display: block; font-size: 1.12rem; font-weight: 900; line-height: 1; color: var(--ink); letter-spacing: -.035em; }
.main-nav { flex-wrap: nowrap; gap: clamp(13px, 1.35vw, 22px); }
.main-nav > a { white-space: nowrap; font-size: clamp(.82rem, .78vw, .92rem); }
.header-actions { flex: 0 0 auto; }
.btn--header-whatsapp {
  white-space: nowrap;
  background: #fff;
  color: var(--green-dark);
  border-color: #b9e8cb;
  box-shadow: 0 10px 28px rgba(18,140,77,.12);
}
.btn--header-whatsapp:hover { border-color: var(--green-dark); background: #f3fff7; }
.btn--header-whatsapp img,
.btn--whatsapp img,
.btn--product img,
.products-note .btn img,
.mobile-bar .wa img { filter: none !important; }
.btn--header-whatsapp img { width: 22px; height: 22px; }
.btn--whatsapp {
  background: #fff;
  color: var(--green-dark);
  border-color: #b9e8cb;
  box-shadow: 0 10px 28px rgba(18,140,77,.12);
}
.btn--whatsapp:hover { background: #f3fff7; border-color: var(--green-dark); }
.btn--product {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid #b9e8cb;
  box-shadow: 0 10px 26px rgba(18,140,77,.10);
}
.btn--product:hover { background: #f3fff7; border-color: var(--green-dark); }
.whatsapp-float {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid #c8ecd5;
  box-shadow: 0 15px 42px rgba(18,140,77,.25);
}
.whatsapp-float img { width: 48px; height: 48px; filter: none !important; }
.brand--footer .brand-name { color: #fff; }
.footer-brand .brand-mark { width: 96px; height: 64px; flex-basis: 96px; box-shadow: none; border: 1px solid rgba(255,255,255,.13); }
.pwa-section[hidden] { display: none !important; }

@media (max-width: 1180px) {
  .main-nav { position: fixed; inset: 82px 0 0; display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 30px 24px; background: white; overflow-y: auto; }
  .main-nav.is-open { display: flex; }
  .main-nav > a { white-space: nowrap; font-size: 1.24rem; padding: 9px 0; }
  .header-actions .btn--header-whatsapp { display: none; }
  .menu-button { display: block; }
}

@media (max-width: 680px) {
  .site-header .container { width: min(100% - 24px, 1180px); }
  .brand { gap: 9px; }
  .brand-mark { width: 68px; height: 46px; flex-basis: 68px; border-radius: 12px; }
  .brand-name { font-size: 1rem; }
  .main-nav { inset: 72px 0 0; }
  .footer-brand .brand-mark { width: 86px; height: 58px; flex-basis: 86px; }
}
.footer-brand .brand-mark img { width: 100%; height: 100%; object-fit: cover; }
