/* =========================================================
   COYOTE MOTO PEÇAS — Design system
   Moderno, curvo, rápido. Paleta extraída da marca (dourado
   Coyote) + asfalto escuro + branco.
   ========================================================= */

:root{
  --gold: #f0b429;
  --gold-2: #ffcf5c;
  --gold-dark: #c4820f;
  --ink: #16151a;
  --ink-2: #201f26;
  --ink-3: #2a2933;
  --red: #e6472e;
  --cream: #fff8e9;
  --paper: #fbf7ef;
  --line: rgba(255,255,255,.09);
  --line-soft: rgba(22,21,26,.08);
  --text: #1c1a17;
  --text-soft: #635c50;
  --text-on-dark: #f6f1e6;
  --text-on-dark-soft: #c9c2b3;
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -20px rgba(22,15,3,.35);
  --shadow-card: 0 14px 34px -18px rgba(22,15,3,.28);
  --container: 1180px;
  --speed: .35s cubic-bezier(.22,.9,.28,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:"Sora",Inter,system-ui,sans-serif;
  line-height:1.08;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
p{ margin:0 0 1em; color:var(--text-soft); line-height:1.65; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px; border-radius:999px; font-weight:700;
  font-size:.95rem; border:2px solid transparent; white-space:nowrap;
  transition:transform var(--speed), box-shadow var(--speed), background var(--speed), border-color var(--speed);
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-primary{ background:var(--gold); color:var(--ink); box-shadow:0 12px 28px -12px rgba(240,180,41,.65); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 34px -14px rgba(240,180,41,.75); }
.btn-ghost{ background:transparent; color:var(--text-on-dark); border-color:rgba(246,241,230,.35); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn-dark{ background:var(--ink); color:var(--text-on-dark); }
.btn-dark:hover{ transform:translateY(-3px); box-shadow:var(--shadow-card); }
.btn-block{ width:100%; justify-content:center; }
.btn-sm{ padding:10px 18px; font-size:.85rem; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-dark); margin-bottom:14px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); border-radius:2px; }
section.on-dark .eyebrow{ color:var(--gold); }
section.on-dark .eyebrow::before{ background:var(--gold); }

/* ---------- Top bar + Header ---------- */
.topbar{
  background:var(--ink); color:var(--text-on-dark-soft); font-size:.82rem;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:8px; padding-bottom:8px; gap:16px; flex-wrap:wrap; }
.topbar a{ color:var(--text-on-dark-soft); transition:color var(--speed); }
.topbar a:hover{ color:var(--gold); }
.topbar-info{ display:flex; gap:20px; flex-wrap:wrap; }
.topbar-info span{ display:inline-flex; align-items:center; gap:7px; }
.topbar-info svg{ width:14px; height:14px; color:var(--gold); flex:none; }
.topbar-social{ display:flex; gap:12px; }
.topbar-social a{ width:26px; height:26px; border-radius:50%; border:1px solid rgba(246,241,230,.25); display:flex; align-items:center; justify-content:center; }
.topbar-social svg{ width:13px; height:13px; }

header.site-header{
  position:sticky; top:0; z-index:60;
  background:var(--ink);
  border-bottom:1px solid var(--line);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; flex:none; }
.brand img{ height:44px; width:auto; }
.brand strong{ display:block; color:var(--text-on-dark); font-family:"Sora",sans-serif; font-size:1.05rem; letter-spacing:.01em; }
.brand span{ display:block; color:var(--text-on-dark-soft); font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; }

nav.main-nav{ display:flex; align-items:center; gap:2px; }
nav.main-nav > ul{ display:flex; align-items:center; gap:2px; }
nav.main-nav > ul > li{ position:relative; }
nav.main-nav > ul > li > a{
  display:flex; align-items:center; gap:6px;
  padding:10px 16px; border-radius:999px; font-weight:600; font-size:.92rem;
  color:var(--text-on-dark-soft); transition:background var(--speed), color var(--speed);
}
nav.main-nav > ul > li > a svg{ width:13px; height:13px; transition:transform var(--speed); }
nav.main-nav > ul > li:hover > a, nav.main-nav > ul > li > a.active{ background:rgba(240,180,41,.12); color:var(--gold); }
nav.main-nav > ul > li:hover > a svg{ transform:rotate(180deg); }

.mega{
  position:absolute; top:100%; left:50%; transform:translate(-50%,10px);
  background:var(--ink-2); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:14px; width:600px; max-width:82vw;
  display:grid; grid-template-columns:1fr 1fr; gap:2px;
  opacity:0; visibility:hidden; transition:opacity var(--speed), transform var(--speed), visibility var(--speed);
  box-shadow:var(--shadow-soft); max-height:70vh; overflow:auto;
}
nav.main-nav > ul > li:hover .mega{ opacity:1; visibility:visible; transform:translate(-50%,4px); }
.mega a{
  display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:12px;
  color:var(--text-on-dark-soft); font-size:.87rem; font-weight:500;
}
.mega a:hover{ background:rgba(240,180,41,.1); color:var(--gold); }
.mega a svg{ width:16px; height:16px; color:var(--gold); flex:none; }

.header-cta{ display:flex; align-items:center; gap:10px; flex:none; }
.burger{ display:none; width:44px; height:44px; border-radius:50%; background:var(--ink-2); border:1px solid var(--line); align-items:center; justify-content:center; }
.burger svg{ width:18px; height:18px; color:var(--text-on-dark); }

@media (max-width: 980px){
  .topbar-info span:nth-child(2){ display:none; }
  nav.main-nav{ display:none; }
  .header-cta .btn span{ display:none; }
  .burger{ display:flex; }
}

/* Mobile drawer */
.mobile-nav{
  position:fixed; inset:0; z-index:80; background:var(--ink);
  transform:translateX(100%); transition:transform var(--speed);
  overflow:auto; padding:20px;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.mobile-nav-head img{ height:36px; }
.mobile-nav .close-btn{ width:40px; height:40px; border-radius:50%; background:var(--ink-2); display:flex; align-items:center; justify-content:center; border:1px solid var(--line); }
.mobile-nav .close-btn svg{ width:16px; height:16px; color:var(--text-on-dark); }
.mobile-nav details{ border-bottom:1px solid var(--line); }
.mobile-nav summary{ padding:16px 4px; color:var(--text-on-dark); font-weight:700; display:flex; justify-content:space-between; align-items:center; list-style:none; cursor:pointer; }
.mobile-nav summary::-webkit-details-marker{ display:none; }
.mobile-nav summary svg{ width:14px; height:14px; transition:transform var(--speed); }
.mobile-nav details[open] summary svg{ transform:rotate(90deg); }
.mobile-nav .sub-list{ padding:0 4px 16px; display:grid; gap:4px; }
.mobile-nav .sub-list a{ color:var(--text-on-dark-soft); padding:8px 10px; border-radius:10px; display:block; font-size:.92rem; }
.mobile-nav .sub-list a:hover{ background:var(--ink-2); color:var(--gold); }
.mobile-nav > a.top-link{ display:block; padding:16px 4px; color:var(--text-on-dark); font-weight:700; border-bottom:1px solid var(--line); }
.mobile-nav-cta{ margin-top:22px; display:grid; gap:10px; }

/* ---------- Hero ---------- */
.hero{
  position:relative; background:var(--ink); color:var(--text-on-dark);
  padding:76px 0 130px; overflow:hidden;
}
.hero-blob{
  position:absolute; border-radius:50%; filter:blur(2px); opacity:.5; pointer-events:none;
}
.hero .blob-1{ width:520px; height:520px; background:radial-gradient(circle at 30% 30%, rgba(240,180,41,.45), transparent 70%); top:-220px; right:-160px; }
.hero .blob-2{ width:360px; height:360px; background:radial-gradient(circle at 30% 30%, rgba(230,71,46,.35), transparent 70%); bottom:-180px; left:-120px; }
.hero-grid{ position:relative; display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(2.3rem, 4.6vw, 3.6rem); }
.hero h1 em{ font-style:normal; color:var(--gold); }
.hero-lead{ font-size:1.08rem; color:var(--text-on-dark-soft); max-width:520px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
.hero-stats{ display:flex; gap:28px; margin-top:44px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family:"Sora",sans-serif; font-size:1.7rem; color:var(--gold); }
.hero-stats div span{ font-size:.8rem; color:var(--text-on-dark-soft); }
.hero-media{ position:relative; }
.hero-media .frame{
  border-radius:var(--radius-xl); overflow:hidden; aspect-ratio:4/3.2;
  box-shadow:var(--shadow-soft); border:1px solid var(--line);
}
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; left:-26px; bottom:-26px; background:var(--gold); color:var(--ink);
  border-radius:var(--radius-lg); padding:18px 22px; box-shadow:var(--shadow-soft);
  display:flex; align-items:center; gap:12px; max-width:230px;
}
.hero-badge svg{ width:30px; height:30px; flex:none; }
.hero-badge strong{ display:block; font-size:.95rem; font-family:"Sora",sans-serif; }
.hero-badge span{ font-size:.76rem; opacity:.75; }
.wave{ position:absolute; left:0; right:0; bottom:-1px; line-height:0; }
.wave svg{ width:100%; height:auto; display:block; }

/* Simple page hero (inner pages) */
.page-hero{
  position:relative; background:var(--ink); color:var(--text-on-dark);
  padding:64px 0 100px; overflow:hidden;
}
.page-hero .blob-1{ width:420px; height:420px; background:radial-gradient(circle at 30% 30%, rgba(240,180,41,.4), transparent 70%); top:-200px; right:-140px; position:absolute; }
.crumbs{ display:flex; gap:8px; align-items:center; font-size:.83rem; color:var(--text-on-dark-soft); margin-bottom:18px; flex-wrap:wrap; }
.crumbs a:hover{ color:var(--gold); }
.crumbs svg{ width:11px; height:11px; opacity:.6; }
.page-hero-grid{ position:relative; display:grid; grid-template-columns:1.15fr .85fr; gap:44px; align-items:center; }
.page-hero h1{ font-size:clamp(2rem,3.6vw,2.9rem); }
.page-hero .frame{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-soft); border:1px solid var(--line); }
.page-hero .frame img{ width:100%; height:100%; object-fit:cover; }
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.tag-pill{ background:rgba(246,241,230,.08); border:1px solid var(--line); color:var(--text-on-dark-soft); padding:7px 14px; border-radius:999px; font-size:.78rem; display:flex; align-items:center; gap:6px; }
.tag-pill svg{ width:13px; height:13px; color:var(--gold); }

@media (max-width: 860px){
  .hero-grid, .page-hero-grid{ grid-template-columns:1fr; }
  .hero-media{ order:-1; }
  .hero-badge{ display:none; }
}

/* ---------- Section basics ---------- */
.section{ padding:96px 0; }
.section.tight{ padding:64px 0; }
.section.on-dark{ background:var(--ink); color:var(--text-on-dark); }
.section.on-dark p{ color:var(--text-on-dark-soft); }
.section.on-dark h2{ color:var(--text-on-dark); }
.section.cream{ background:var(--cream); }
.section-head{ max-width:640px; margin:0 0 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem,3vw,2.4rem); }
.curve-top{ position:absolute; top:-1px; left:0; right:0; line-height:0; transform:rotate(180deg); }

/* ---------- Services grid ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; }
.service-card{
  background:#fff; border-radius:var(--radius-lg); padding:30px 26px; box-shadow:var(--shadow-card);
  border:1px solid var(--line-soft); transition:transform var(--speed), box-shadow var(--speed);
  position:relative; overflow:hidden;
}
.service-card::after{
  content:""; position:absolute; width:120px; height:120px; border-radius:50%;
  background:radial-gradient(circle, rgba(240,180,41,.16), transparent 70%);
  top:-40px; right:-40px;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:0 26px 46px -20px rgba(22,15,3,.32); }
.service-icon{
  width:58px; height:58px; border-radius:18px; background:linear-gradient(140deg,var(--gold),var(--gold-2));
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; position:relative;
}
.service-icon svg{ width:28px; height:28px; color:var(--ink); }
.service-card h3{ font-size:1.08rem; margin-bottom:8px; }
.service-card p{ font-size:.9rem; margin-bottom:16px; }
.service-card .go{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:.85rem; color:var(--gold-dark); }
.service-card .go svg{ width:13px; height:13px; transition:transform var(--speed); }
.service-card:hover .go svg{ transform:translateX(4px); }
.service-card.on-dark-card{ background:var(--ink-2); border-color:var(--line); }
.service-card.on-dark-card h3, .service-card.on-dark-card .go{ color:var(--text-on-dark); }
.service-card.on-dark-card .go{ color:var(--gold); }
.service-card.on-dark-card p{ color:var(--text-on-dark-soft); }

/* ---------- Products grid ---------- */
.products-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.product-card{
  background:#fff; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card);
  border:1px solid var(--line-soft); transition:transform var(--speed), box-shadow var(--speed);
}
.product-card:hover{ transform:translateY(-8px); }
.product-card .thumb{ aspect-ratio:4/3; overflow:hidden; background:var(--cream); }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.product-card:hover .thumb img{ transform:scale(1.06); }
.product-card .body{ padding:18px 20px 22px; }
.product-card h3{ font-size:1rem; margin-bottom:6px; }
.product-card p{ font-size:.85rem; margin-bottom:10px; }
.product-card .go{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:.82rem; color:var(--gold-dark); }

/* ---------- Category strip (icons row) ---------- */
.cat-strip{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.cat-chip{
  display:flex; align-items:center; gap:9px; padding:11px 20px; border-radius:999px;
  background:#fff; border:1px solid var(--line-soft); box-shadow:var(--shadow-card); font-weight:600; font-size:.87rem;
  transition:transform var(--speed), border-color var(--speed);
}
.cat-chip:hover{ transform:translateY(-3px); border-color:var(--gold); }
.cat-chip svg{ width:16px; height:16px; color:var(--gold-dark); }

/* ---------- Differentiators ---------- */
.diff-wrap{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; }
.diff-card{ display:flex; gap:16px; align-items:flex-start; }
.diff-icon{
  width:52px; height:52px; border-radius:16px; background:rgba(240,180,41,.14); flex:none;
  display:flex; align-items:center; justify-content:center;
}
.diff-icon svg{ width:24px; height:24px; color:var(--gold); }
.diff-card h4{ font-size:1.02rem; margin-bottom:5px; color:var(--text-on-dark); font-family:"Sora",sans-serif; }
.diff-card p{ font-size:.88rem; margin:0; }

/* ---------- Speed strip ---------- */
.speed-strip{
  background:var(--ink); position:relative; overflow:hidden; padding:26px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.speed-track{ display:flex; gap:56px; white-space:nowrap; animation:scrollx 26s linear infinite; width:max-content; }
.speed-track span{ color:var(--text-on-dark-soft); font-family:"Sora",sans-serif; font-weight:700; font-size:1rem; display:flex; align-items:center; gap:14px; letter-spacing:.02em; }
.speed-track span svg{ width:16px; height:16px; color:var(--gold); }
@keyframes scrollx{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .speed-track{ animation:none; } }

/* ---------- Testimonials ---------- */
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:22px; }
.testi-card{
  background:#fff; border-radius:var(--radius-lg); padding:28px 26px; box-shadow:var(--shadow-card);
  border:1px solid var(--line-soft); position:relative;
}
.testi-stars{ display:flex; gap:3px; margin-bottom:14px; }
.testi-stars svg{ width:15px; height:15px; color:var(--gold); }
.testi-card p{ font-size:.94rem; color:var(--text); margin-bottom:18px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%; background:linear-gradient(140deg,var(--gold),var(--gold-2));
  display:flex; align-items:center; justify-content:center; font-family:"Sora",sans-serif; font-weight:700; color:var(--ink); flex:none;
}
.testi-who strong{ display:block; font-size:.88rem; }
.testi-who span{ display:block; font-size:.76rem; color:var(--text-soft); }
.testi-note{ text-align:center; font-size:.78rem; color:var(--text-soft); margin-top:28px; opacity:.75; }

/* ---------- About / split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.split .frame{ border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-card); aspect-ratio:4/3.4; }
.split .frame img{ width:100%; height:100%; object-fit:cover; }
.split-reverse{ direction:rtl; }
.split-reverse > *{ direction:ltr; }
.check-list{ display:grid; gap:12px; margin-top:20px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.94rem; color:var(--text); }
.check-list svg{ width:20px; height:20px; color:#1d9a5f; flex:none; margin-top:1px; }
@media (max-width: 860px){ .split{ grid-template-columns:1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.gallery-grid a{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:1/1; display:block; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-grid a:hover img{ transform:scale(1.08); }
.gallery-grid a:nth-child(1){ grid-column:span 2; grid-row:span 2; }
@media (max-width: 700px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } .gallery-grid a:nth-child(1){ grid-column:span 2; grid-row:span 1; } }

/* ---------- Brands strip ---------- */
.brands-strip{ display:flex; flex-wrap:wrap; gap:26px; align-items:center; justify-content:center; }
.brands-strip img{ height:38px; width:auto; filter:grayscale(1); opacity:.55; transition:opacity var(--speed), filter var(--speed); }
.brands-strip img:hover{ filter:grayscale(0); opacity:1; }

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg,var(--gold),var(--gold-2)); border-radius:var(--radius-xl);
  padding:52px 48px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band h3{ font-size:1.6rem; color:var(--ink); max-width:520px; }
.cta-band p{ color:rgba(22,21,26,.75); margin-bottom:0; max-width:480px; }
.cta-band .btn-dark:hover{ box-shadow:0 18px 34px -14px rgba(22,21,26,.45); }

/* ---------- Related / other categories ---------- */
.related-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; }
.related-card{
  background:var(--ink-2); border:1px solid var(--line); border-radius:var(--radius-md); padding:18px 20px;
  display:flex; align-items:center; gap:12px; transition:transform var(--speed), border-color var(--speed);
}
.related-card:hover{ transform:translateY(-4px); border-color:var(--gold); }
.related-card svg{ width:20px; height:20px; color:var(--gold); flex:none; }
.related-card span{ font-size:.88rem; font-weight:600; color:var(--text-on-dark); }

/* ---------- FAQ ---------- */
.faq{ max-width:760px; margin:0 auto; display:grid; gap:12px; }
.faq details{ background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:6px 22px; box-shadow:var(--shadow-card); }
.faq summary{ padding:16px 0; font-weight:700; display:flex; justify-content:space-between; align-items:center; cursor:pointer; list-style:none; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary svg{ width:16px; height:16px; color:var(--gold-dark); transition:transform var(--speed); flex:none; }
.faq details[open] summary svg{ transform:rotate(45deg); }
.faq .a{ padding:0 0 18px; font-size:.92rem; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:40px; }
.contact-card{ background:var(--ink-2); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px; }
.contact-line{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--line); }
.contact-line:last-child{ border-bottom:none; }
.contact-line svg{ width:20px; height:20px; color:var(--gold); flex:none; margin-top:2px; }
.contact-line strong{ display:block; color:var(--text-on-dark); font-size:.92rem; margin-bottom:2px; }
.contact-line span, .contact-line a{ font-size:.87rem; color:var(--text-on-dark-soft); }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line-soft); box-shadow:var(--shadow-card); aspect-ratio:16/10; }
.map-frame img{ width:100%; height:100%; object-fit:cover; }
.form-card{ background:#fff; border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-card); border:1px solid var(--line-soft); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-card label{ font-size:.82rem; font-weight:700; margin-bottom:6px; display:block; }
.form-card input, .form-card select, .form-card textarea{
  width:100%; padding:13px 16px; border-radius:14px; border:1.5px solid var(--line-soft);
  font-family:inherit; font-size:.92rem; margin-bottom:16px; background:var(--paper); transition:border-color var(--speed);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus{ outline:none; border-color:var(--gold); }
@media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ---------- Footer ---------- */
footer{ background:var(--ink); color:var(--text-on-dark-soft); padding:70px 0 0; position:relative; overflow:hidden; }
.footer-grid{ display:grid; grid-template-columns:1.3fr .8fr .8fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid var(--line); }
.footer-brand img{ height:42px; margin-bottom:16px; }
.footer-brand p{ font-size:.88rem; color:var(--text-on-dark-soft); max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background:var(--ink-2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; transition:background var(--speed); }
.footer-social a:hover{ background:var(--gold); }
.footer-social a:hover svg{ color:var(--ink); }
.footer-social svg{ width:15px; height:15px; }
footer h5{ color:var(--text-on-dark); font-family:"Sora",sans-serif; font-size:.92rem; margin-bottom:16px; letter-spacing:.03em; text-transform:uppercase; }
footer ul{ display:grid; gap:9px; }
footer ul a{ font-size:.87rem; transition:color var(--speed); }
footer ul a:hover{ color:var(--gold); }
.footer-payments{ display:flex; gap:10px; align-items:center; margin-top:14px; flex-wrap:wrap; }
.footer-payments img{ height:22px; opacity:.8; }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:.8rem; }
.footer-bottom a:hover{ color:var(--gold); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- Floating WhatsApp ---------- */
.float-wa{
  position:fixed; right:22px; bottom:22px; z-index:70;
  width:60px; height:60px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -10px rgba(37,211,102,.6);
  animation:pulse 2.4s ease-in-out infinite;
}
.float-wa svg{ width:28px; height:28px; }
@keyframes pulse{ 0%,100%{ box-shadow:0 14px 30px -10px rgba(37,211,102,.6);} 50%{ box-shadow:0 14px 30px -6px rgba(37,211,102,.85);} }
@media (prefers-reduced-motion: reduce){ .float-wa{ animation:none; } }

/* ---------- misc ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:860px){ .grid-2,.grid-3{ grid-template-columns:1fr; } }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.badge{ background:var(--cream); border:1px solid var(--line-soft); padding:8px 14px; border-radius:999px; font-size:.78rem; font-weight:700; color:var(--gold-dark); display:flex; align-items:center; gap:6px; }
.badge svg{ width:13px; height:13px; }
.skip-link{ position:absolute; left:-999px; top:0; background:var(--gold); color:var(--ink); padding:10px 16px; border-radius:0 0 10px 0; z-index:100; }
.skip-link:focus{ left:0; }
