:root {
  --red-900: #78000f;
  --red-700: #a90016;
  --red: #c9001b;
  --red-500: #e21a2d;
  --yellow: #f6c900;
  --yellow-soft: #ffe98a;
  --ink: #151515;
  --ink-2: #262626;
  --muted: #666;
  --paper: #fbfaf7;
  --white: #fff;
  --line: rgba(21, 21, 21, .1);
  --shadow: 0 26px 70px rgba(10, 10, 10, .12);
  --container: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.top-strip {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.top-strip__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px; background: var(--red); color: white;
  display: grid; place-items: center; line-height: .9; position: relative; box-shadow: 8px 8px 0 var(--yellow);
}
.brand-mark span { font-size: 18px; font-weight: 900; letter-spacing: -.04em; }
.brand-mark small { position: absolute; right: -5px; bottom: -6px; background: var(--yellow); color: var(--ink); padding: 2px 4px; border-radius: 5px; font-size: 8px; font-weight: 900; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 15px; letter-spacing: .03em; }
.brand-copy small { color: var(--muted); font-size: 11px; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > a { padding: 10px 13px; border-radius: 10px; font-size: 14px; font-weight: 700; color: #444; }
.main-nav > a:hover, .main-nav > a.active { color: var(--red); background: rgba(201,0,27,.06); }
.main-nav .nav-cta { background: var(--red); color: white; margin-left: 7px; }
.main-nav .nav-cta:hover { background: var(--red-700); color: white; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 84% 22%, rgba(246,201,0,.16), transparent 26%), linear-gradient(135deg, #fff 0%, #faf8f0 48%, #f8eee9 100%);
  padding: 82px 0 90px;
}
.hero:before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.022) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 80%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .8fr); gap: 70px; align-items: center; }
.hero-copy { max-width: 700px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--red); font-size: 12px; line-height: 1; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(246,201,0,.18); }
h1 { margin: 22px 0 20px; font-size: clamp(46px, 5vw, 74px); letter-spacing: -.055em; line-height: .98; max-width: 760px; }
h1 span { color: var(--red); position: relative; }
h1 span:after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 7px; background: var(--yellow); z-index: -1; transform: skew(-12deg); opacity: .85; }
.hero-lead { max-width: 670px; color: #535353; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 19px; border-radius: 14px; border: 1px solid transparent; font-size: 14px; font-weight: 900; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--red); color: white; box-shadow: 0 16px 30px rgba(201,0,27,.2); }
.button--primary:hover { background: var(--red-700); }
.button--ghost { border-color: rgba(21,21,21,.16); background: rgba(255,255,255,.55); }
.button--ghost:hover { border-color: var(--red); color: var(--red); }
.button--large { min-height: 60px; padding-inline: 25px; }
.button-icon { font-size: 18px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); }
.trust-item { display: grid; gap: 0; }
.trust-item strong { font-size: 18px; }
.trust-item span, .micro-note { color: #777; font-size: 12px; }
.micro-note { margin-top: 10px; }
.hero-card { background: var(--ink); border-radius: 26px; padding: 12px; box-shadow: var(--shadow); transform: rotate(1.3deg); }
.hero-card__image-wrap { height: 590px; border-radius: 18px; overflow: hidden; position: relative; background: #1d1d1d; }
.hero-card__image-wrap:before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.38), transparent 48%); z-index: 1; }
.hero-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-card__badge { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: flex; align-items: center; gap: 9px; color: #fff; }
.hero-card__badge span { width: 35px; height: 35px; border-radius: 10px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-weight: 1000; }
.hero-card__badge small { display: grid; gap: 1px; font-weight: 800; }
.hero-card__footer { display: flex; align-items: center; justify-content: space-between; color: #fff; padding: 16px 8px 5px 7px; }
.hero-card__footer div { display: grid; gap: 2px; }
.hero-card__footer strong { font-size: 14px; }
.hero-card__footer span { color: #aaa; font-size: 11px; }
.hero-card__footer a { width: 35px; height: 35px; border: 1px solid #444; border-radius: 10px; display: grid; place-items: center; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(10px); opacity: .5; pointer-events: none; }
.hero-glow--one { width: 220px; height: 220px; background: var(--yellow); right: 2%; top: 5%; }
.hero-glow--two { width: 180px; height: 180px; background: var(--red); left: -6%; bottom: 10%; opacity: .13; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: 50px; align-items: end; margin-bottom: 50px; }
.section-heading h2, .about-card h2, .contact h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1; letter-spacing: -.045em; margin: 15px 0 0; }
.section-heading > p { color: #666; max-width: 480px; justify-self: end; }
.section-heading--center { text-align: center; display: block; max-width: 800px; margin-inline: auto; }
.section-heading--center > p { margin: 17px auto 0; max-width: 680px; }

.services { background: #111; color: #fff; }
.services .section-heading > p, .services .section-heading h2 { color: #fff; }
.services .eyebrow { color: var(--yellow); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.service-card { min-height: 365px; border-radius: 20px; background: #1c1c1c; border: 1px solid rgba(255,255,255,.07); padding: 24px; position: relative; overflow: hidden; }
.service-card:after { content: ""; position: absolute; width: 115px; height: 115px; border-radius: 50%; background: rgba(201,0,27,.1); top: -36px; right: -36px; }
.service-card--featured { background: linear-gradient(160deg, var(--red-700), var(--red)); border-color: transparent; }
.service-number { position: absolute; top: 22px; right: 22px; color: rgba(255,255,255,.34); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.service-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-size: 23px; font-weight: 900; margin-bottom: 40px; }
.service-card h3 { font-size: 22px; margin: 0 0 9px; letter-spacing: -.03em; }
.service-card p { margin: 0; color: #b4b4b4; font-size: 14px; }
.service-card--featured p { color: rgba(255,255,255,.8); }
.service-card ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-card li { font-size: 12px; color: #ddd; padding-left: 16px; position: relative; }
.service-card li:before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
.keyword-band { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 22px; }
.keyword-band span { padding: 8px 11px; border-radius: 99px; background: #191919; border: 1px solid #2b2b2b; color: #c7c7c7; font-size: 11px; }

.showcase { background: linear-gradient(to bottom, #fff 0%, #f6f4ef 100%); }
.story-carousel { background: #121212; border-radius: 26px; padding: 12px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr); box-shadow: var(--shadow); min-height: 650px; }
.story-media { min-height: 626px; position: relative; border-radius: 19px; overflow: hidden; background: #222; display: grid; place-items: center; isolation: isolate; }
.story-media__backdrop { position: absolute; inset: -30px; background-position: center; background-size: cover; filter: blur(25px); transform: scale(1.08); opacity: .42; z-index: -1; }
.story-media:after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0 35%, rgba(0,0,0,.18) 100%); pointer-events: none; }
.story-media__image { width: 100%; height: 100%; object-fit: contain; object-position: center; position: relative; z-index: 1; filter: saturate(1.02) contrast(1.01); }
.story-counter { position: absolute; top: 19px; left: 20px; z-index: 2; display: flex; align-items: baseline; gap: 4px; padding: 9px 11px; border-radius: 11px; background: rgba(0,0,0,.42); color: #fff; backdrop-filter: blur(9px); }
.story-counter strong { font-size: 18px; }
.story-counter span { font-size: 12px; color: #bbb; }
.carousel-arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); background: rgba(0,0,0,.32); color: #fff; cursor: pointer; backdrop-filter: blur(9px); transition: background .2s, transform .2s; }
.carousel-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.04); }
.carousel-arrow--prev { left: 16px; }
.carousel-arrow--next { right: 16px; }
.story-panel { padding: 38px 38px 26px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.story-panel .eyebrow { color: var(--yellow); }
.story-panel__top { display: grid; gap: 22px; }
.story-progress { width: 100%; height: 3px; background: #2c2c2c; border-radius: 99px; overflow: hidden; }
.story-progress span { display: block; width: 0; height: 100%; background: var(--yellow); }
.story-progress.is-running span { animation: carouselProgress 5s linear forwards; }
@keyframes carouselProgress { from { width: 0; } to { width: 100%; } }
.story-copy { padding: 45px 0; }
.story-kicker { color: var(--yellow); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 10px; }
.story-copy h3 { font-size: clamp(30px, 3.2vw, 45px); line-height: 1.02; letter-spacing: -.04em; margin: 0 0 24px; }
.story-copy ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.story-copy li { color: #c4c4c4; padding-left: 21px; position: relative; font-size: 14px; }
.story-copy li:before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 2px; background: var(--red); }
.story-controls { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 16px; border-top: 1px solid #2a2a2a; }
.pause-button { border: 0; background: transparent; color: #ccc; cursor: pointer; padding: 6px 0; font-weight: 800; font-size: 12px; }
.pause-button span { display: inline-grid; place-items: center; width: 26px; height: 26px; border: 1px solid #3d3d3d; border-radius: 50%; margin-right: 7px; }
.story-dots { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; max-width: 270px; }
.story-dots button { border: 0; background: #353535; width: 7px; height: 7px; border-radius: 99px; padding: 0; cursor: pointer; }
.story-dots button.active { width: 22px; background: var(--yellow); }
.noscript-note { margin-top: 20px; padding: 14px; border: 1px dashed #bbb; border-radius: 12px; color: #666; }

.about { background: var(--yellow); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.about-card { position: relative; }
.about-card h2 { max-width: 650px; }
.about-card > p:not(.eyebrow) { color: #5b500b; max-width: 650px; margin-top: 22px; }
.about-card__stamp { position: absolute; top: -50px; right: 12%; width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: white; font-size: 32px; font-weight: 1000; transform: rotate(-10deg); box-shadow: 0 12px 30px rgba(120,0,15,.2); }
.about-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 33px; }
.about-points div { padding: 17px; background: rgba(255,255,255,.33); border-radius: 14px; }
.about-points strong, .about-points span { display: block; }
.about-points strong { font-size: 13px; }
.about-points span { margin-top: 6px; color: #74670e; font-size: 11px; }
.about-list { display: grid; gap: 0; border-top: 1px solid rgba(21,21,21,.15); }
.about-list article { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 24px 0; border-bottom: 1px solid rgba(21,21,21,.15); }
.about-list article > span { color: var(--red); font-size: 11px; font-weight: 1000; padding-top: 5px; }
.about-list h3 { margin: 0 0 4px; font-size: 19px; letter-spacing: -.03em; }
.about-list p { margin: 0; color: #62580f; font-size: 13px; }

.areas { background: #191919; color: #fff; }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.areas h2 { margin: 15px 0; font-size: clamp(34px, 4vw, 50px); line-height: 1; letter-spacing: -.045em; }
.areas p { color: #a7a7a7; max-width: 580px; }
.areas .eyebrow { color: var(--yellow); }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.area-tags span { padding: 10px 12px; border-radius: 10px; background: #232323; border: 1px solid #333; font-size: 12px; color: #ddd; }

.contact { background: linear-gradient(135deg, #fff 0%, #f6edea 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.contact h2 { max-width: 690px; }
.contact > .container > div:first-child > p { color: #666; max-width: 650px; margin: 23px 0 28px; }
.contact-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 22px; padding: 14px; }
.contact-row { display: grid; grid-template-columns: 43px 1fr; gap: 13px; align-items: start; padding: 18px 13px; border-bottom: 1px solid #eee; }
.contact-row:last-of-type { border-bottom: 0; }
.contact-icon { width: 43px; height: 43px; border-radius: 12px; display: grid; place-items: center; background: var(--yellow); font-weight: 900; }
.contact-row small, .contact-row strong, .contact-row span { display: block; }
.contact-row small { color: #888; font-size: 10px; text-transform: uppercase; font-weight: 900; letter-spacing: .12em; }
.contact-row strong { margin-top: 2px; font-size: 15px; }
.contact-row div > span { margin-top: 2px; color: #777; font-size: 11px; }
.address-link { display: block; background: var(--red); color: #fff; padding: 14px; text-align: center; border-radius: 13px; margin-top: 8px; font-weight: 900; font-size: 13px; }

.site-footer { background: #101010; color: #fff; padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 11px; color: #868686; }
.footer-inner > div:first-child { display: grid; gap: 3px; }
.footer-inner strong { color: #fff; letter-spacing: .08em; }
.footer-inner span { color: #868686; }

.whatsapp-float { position: fixed; left: 18px; bottom: 18px; z-index: 60; min-height: 62px; display: inline-flex; align-items: center; gap: 11px; padding: 8px 10px 8px 8px; border-radius: 999px; background: #168c42; color: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.25); border: 2px solid #fff; animation: floatPulse 3.6s ease-in-out infinite; }
.whatsapp-float__icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #168c42; font-weight: 1000; font-size: 24px; }
.whatsapp-float__copy { display: grid; gap: 1px; padding-right: 5px; }
.whatsapp-float__copy strong { font-size: 12px; }
.whatsapp-float__copy span { font-size: 11px; opacity: .84; }
.whatsapp-float__arrow { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); }
@keyframes floatPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

@media (max-width: 1050px) {
  .main-nav > a { padding-inline: 9px; }
  .hero-grid { gap: 45px; grid-template-columns: minmax(0, 1fr) minmax(310px, .65fr); }
  .hero-card__image-wrap { height: 515px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .story-carousel { grid-template-columns: 1fr; }
  .story-media { min-height: 560px; }
  .story-panel { padding: 30px; }
}

@media (max-width: 820px) {
  .top-strip__inner { justify-content: center; text-align: center; }
  .top-strip__inner span:last-child { display: none; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 106px 16px auto 16px; padding: 10px; background: rgba(255,255,255,.97); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; display: grid; gap: 5px; transform: translateY(-15px); opacity: 0; pointer-events: none; transition: .2s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 13px; }
  .main-nav .nav-cta { margin: 5px 0 0; text-align: center; }
  .hero { padding: 58px 0 70px; }
  .hero-grid, .section-heading, .about-grid, .areas-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-card { max-width: 610px; width: 100%; margin: 0 auto; }
  .hero-card__image-wrap { height: 480px; }
  .section-heading { gap: 18px; }
  .section-heading > p { justify-self: start; }
  .about-grid, .contact-grid, .areas-inner { gap: 45px; }
  .about-points { grid-template-columns: 1fr; }
  .contact-card { max-width: 580px; }
  .whatsapp-float { right: 12px; left: 12px; bottom: 12px; justify-content: center; }
  .whatsapp-float__copy { flex: 1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-trust { gap: 14px 22px; }
  .trust-item strong { font-size: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .story-carousel { padding: 8px; border-radius: 19px; }
  .story-media { min-height: 435px; border-radius: 14px; }
  .story-panel { padding: 24px 17px 17px; }
  .story-copy { padding: 36px 0; }
  .story-copy h3 { font-size: 32px; }
  .story-dots { max-width: 175px; }
  .about-card__stamp { top: -20px; right: 2px; width: 72px; height: 72px; font-size: 23px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .whatsapp-float__copy strong { font-size: 11px; }
  .whatsapp-float__copy span { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
.story-media__image.is-changing { opacity: .45; transform: scale(.985); }

/* Ajustes visuais da versão revisada */
.hero { min-height: 690px; display: grid; align-items: center; }
.hero-copy { animation: heroReveal .75s cubic-bezier(.2,.75,.2,1) both; }
.hero-card { animation: heroCardReveal .9s .08s cubic-bezier(.2,.75,.2,1) both; }
.hero-card__image-wrap { background: #111; }
.hero-card__image-wrap img { object-fit: contain; object-position: center; padding: 0; background: #111; }
.hero-card__image-wrap:after { content: "CHAVEIRO RT"; position: absolute; top: 18px; right: 18px; z-index: 2; padding: 8px 10px; border-radius: 999px; background: rgba(201,0,27,.94); color: #fff; font-size: 10px; font-weight: 950; letter-spacing: .13em; box-shadow: 0 9px 24px rgba(0,0,0,.2); animation: badgeFloat 4s ease-in-out infinite; }
.hero-card__badge small { line-height: 1.35; }
.hero-card__badge small strong { color: var(--yellow); }
.hero-keywords { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.hero-keywords span { border: 1px solid rgba(201,0,27,.12); background: rgba(255,255,255,.62); color: #555; padding: 7px 9px; border-radius: 999px; font-size: 10px; font-weight: 800; }
.button-icon--whatsapp { display: inline-grid; place-items: center; width: 22px; height: 22px; }
.button-icon--whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.hero .button--primary { position: relative; overflow: hidden; }
.hero .button--primary:after { content: ""; position: absolute; inset: -60% -20%; background: linear-gradient(100deg, transparent 42%, rgba(255,255,255,.2) 50%, transparent 58%); transform: translateX(-60%); animation: shine 4.8s ease-in-out infinite; pointer-events: none; }

.service-card { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card--interactive { cursor: pointer; outline: none; }
.service-card--interactive:hover, .service-card--interactive:focus-visible { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.25); }
.service-card--interactive:focus-visible { border-color: var(--yellow); }
.service-card__heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card__heading h3 { margin-bottom: 9px; }
.service-card__toggle { width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; display: grid; place-items: center; color: var(--yellow); font-size: 20px; line-height: 1; transition: transform .25s ease, background .25s ease; }
.service-card--interactive[aria-expanded="true"] .service-card__toggle { transform: rotate(45deg); background: rgba(255,255,255,.1); }
.service-card__details { max-height: 0; opacity: 0; overflow: hidden; margin-top: 0 !important; transform: translateY(-5px); transition: max-height .28s ease, opacity .22s ease, transform .28s ease, margin-top .28s ease !important; }
.service-card--interactive[aria-expanded="true"] .service-card__details { max-height: 240px; opacity: 1; margin-top: 22px !important; transform: translateY(0); }
.service-card:not(.service-card--interactive) { cursor: default; }
.service-card:not(.service-card--interactive):hover { transform: none; box-shadow: none; }

.story-panel__top { gap: 15px; }
.story-copy { max-width: 530px; }
.story-kicker { display: inline-flex; align-items: center; gap: 7px; }
.story-kicker:before { content: ""; width: 22px; height: 2px; background: var(--red); display: inline-block; }
.story-copy h3 { text-wrap: balance; }
.story-copy li { color: #d2d2d2; font-size: 14px; line-height: 1.5; }
.story-copy li:before { width: 6px; height: 6px; top: .65em; border-radius: 50%; background: var(--yellow); }
.story-copy li strong { color: #fff; }

.contact-icon { width: 52px; height: 52px; border-radius: 15px; background: #fff4b8; color: var(--red); border: 1px solid rgba(201,0,27,.12); display: grid; place-items: center; align-self: center; }
.contact-icon svg { width: 25px; height: 25px; fill: currentColor; }
.contact-icon--whatsapp { background: #e9f9ee; color: #169447; }
.contact-row { grid-template-columns: 52px 1fr; align-items: center; min-height: 88px; }
.contact-actions { display: grid; gap: 9px; padding: 12px 0 0; }
.address-link { margin-top: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.copy-address { width: 100%; min-height: 44px; border: 1px solid rgba(21,21,21,.12); border-radius: 13px; background: #fafafa; color: #444; font-weight: 900; cursor: pointer; }
.copy-address:hover { border-color: var(--red); color: var(--red); }
.copy-address.is-copied { border-color: #169447; color: #169447; }
.whatsapp-float { background: #169447; }
.whatsapp-float__icon { width: 46px; height: 46px; color: #169447; }
.whatsapp-float__icon svg { width: 26px; height: 26px; fill: currentColor; }
.whatsapp-float__copy strong { font-size: 13px; }

@keyframes heroReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroCardReveal { from { opacity: 0; transform: translateY(26px) rotate(1.3deg); } to { opacity: 1; transform: translateY(0) rotate(1.3deg); } }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes shine { 0%,55%,100% { transform: translateX(-65%); } 70% { transform: translateX(65%); } }

@media (max-width: 820px) {
  .hero { min-height: auto; }
  .hero-card__image-wrap { height: 560px; }
  .hero-card__image-wrap img { object-fit: contain; }
}
@media (max-width: 560px) {
  .hero-card { transform: rotate(.6deg); }
  .hero-card__image-wrap { height: 430px; }
  .hero-keywords span { font-size: 9px; }
  .contact-icon { width: 48px; height: 48px; }
  .contact-row { grid-template-columns: 48px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-card, .hero-card__image-wrap:after, .hero .button--primary:after, .hero h1 .hero-brand { animation: none !important; }
}

/* Refinamentos finais — marca e contatos */
.hero h1 .hero-brand {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  font-weight: 950;
  letter-spacing: -.035em;
  background: linear-gradient(110deg, var(--ink) 8%, var(--red) 42%, var(--yellow) 58%, var(--red) 74%, var(--ink) 96%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: brandFade 8s ease-in-out infinite;
}
@keyframes brandFade {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero h1 .hero-subtitle {
  color: var(--red) !important;
  position: relative;
}
.hero h1 .hero-subtitle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.05em;
  height: .10em;
  border-radius: 999px;
  background: var(--yellow);
  z-index: -1;
  transform: skewX(-10deg);
}

/* Ícones de contato: mesma caixa, mesmo tamanho e alinhamento consistente */
.contact-row {
  grid-template-columns: 76px 1fr;
  align-items: center;
  min-height: 102px;
  padding: 20px 12px;
}
.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  background: var(--yellow-soft);
  color: var(--red);
  border: 2px solid rgba(201,0,27,.14);
  box-shadow: inset 0 -3px 0 rgba(21,21,21,.06), 0 8px 20px rgba(21,21,21,.07);
}
.contact-icon svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}
.contact-icon--whatsapp {
  background: var(--yellow-soft);
  color: var(--red);
}
.contact-row > div {
  min-width: 0;
}
.contact-row strong {
  line-height: 1.3;
}

@media (max-width: 560px) {
  .contact-row {
    grid-template-columns: 68px 1fr;
    min-height: 96px;
    padding: 18px 10px;
  }
  .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }
  .contact-icon svg {
    width: 28px;
    height: 28px;
  }
  .hero h1 .hero-brand {
    white-space: normal;
  }
}


/* Destaque automático dos serviços a cada 5s — visual simples e leve. */
.service-card--auto-active {
  background: linear-gradient(155deg, var(--red-700), var(--red));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(201, 0, 27, .18);
}
.service-card--auto-active p { color: rgba(255,255,255,.82); }
.service-card--auto-active li { color: #fff; }
.service-card--auto-active .service-number { color: rgba(255,255,255,.5); }
.service-card--auto-active .service-icon {
  background: var(--yellow);
  color: var(--ink);
}
.service-card--auto-active .service-icon--electric { color: #171717; }
.service-icon svg {
  width: 29px;
  height: 29px;
  display: block;
  fill: currentColor;
}
.service-icon--electric svg {
  fill: #171717;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.2));
}

/* Contatos: ícones maiores, centralizados e visualmente uniformes. */
.contact-card { padding: 18px; }
.contact-row {
  grid-template-columns: 82px minmax(0, 1fr);
  min-height: 112px;
  padding: 20px 14px;
  column-gap: 16px;
  align-items: center;
}
.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  justify-self: center;
  align-self: center;
  display: grid;
  place-items: center;
}
.contact-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}
.contact-row > div { align-self: center; }
.contact-row strong { font-size: 16px; line-height: 1.32; }
.contact-row small { font-size: 11px; }
.contact-row div > span { font-size: 12px; }

@media (max-width: 560px) {
  .contact-row {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 104px;
    padding: 18px 8px;
    column-gap: 12px;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  .contact-icon svg {
    width: 32px;
    height: 32px;
  }
}


/* v6 — cards de serviços: nenhum fica permanentemente vermelho; somente o ativo recebe destaque. */
.service-card--featured { background: #1c1c1c; border-color: rgba(255,255,255,.07); }
.service-card--auto-active { background: linear-gradient(155deg, var(--red-700), var(--red)); border-color: transparent; }
.service-card--auto-active .service-card__details { max-height: 240px; opacity: 1; margin-top: 22px !important; transform: translateY(0); }
.service-card--auto-active .service-card__toggle { transform: rotate(45deg); background: rgba(255,255,255,.1); }
.service-card--auto-active .service-card__toggle { color: var(--yellow); }
.service-card--auto-active .service-number { color: rgba(255,255,255,.5); }

/* Contatos: cada ícone ocupa uma célula própria e fica geometricamente centralizado. */
.contact-card { padding: 16px; }
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 10px;
  min-height: 146px;
  padding: 22px 14px;
  text-align: center;
}
.contact-icon {
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
  margin: 0 auto;
  border-radius: 20px;
  display: grid;
  place-items: center;
  position: relative;
  left: 0;
  top: 0;
}
.contact-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0;
  transform: translate(0,0);
}
.contact-row > div {
  width: 100%;
  min-width: 0;
  align-self: center;
  text-align: center;
}
.contact-row small,
.contact-row strong,
.contact-row div > span { text-align: center; }
.contact-row strong { display: block; }

@media (max-width: 560px) {
  .contact-row {
    min-height: 138px;
    padding: 20px 10px;
  }
  .contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 18px;
  }
  .contact-icon svg { width: 36px; height: 36px; }
}


/* v7 — refinamento visual: menu compacto e contatos centralizados sem caixas de ícones. */
.header-inner { min-height: 72px; gap: 18px; }
.main-nav { gap: 2px; }
.main-nav > a { padding: 8px 10px; font-size: 13px; }
.main-nav .nav-cta { margin-left: 4px; padding-inline: 12px; }

.contact-card {
  padding: 20px 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 22px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 7px;
  min-height: 132px;
  padding: 10px 8px 14px;
  text-align: center;
  border-bottom: 0;
}
.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  margin: 0 auto 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  color: var(--red);
}
.contact-icon svg {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0;
}
.contact-icon--whatsapp {
  background: transparent;
  color: #169447;
}
.contact-row > div {
  width: 100%;
  min-width: 0;
  align-self: start;
  text-align: center;
}
.contact-row small,
.contact-row strong,
.contact-row div > span { text-align: center; }
.contact-row small { font-size: 10px; }
.contact-row strong { display: block; font-size: 15px; line-height: 1.3; }
.contact-row div > span { font-size: 11px; }
.contact-actions {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 6px;
}

@media (max-width: 1050px) {
  .main-nav > a { padding-inline: 7px; font-size: 12px; }
  .main-nav .nav-cta { padding-inline: 10px; }
  .header-inner { gap: 12px; }
}
@media (max-width: 820px) {
  .header-inner { min-height: 68px; }
  .main-nav > a { padding: 13px; font-size: 14px; }
  .contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
    padding: 16px 10px 14px;
  }
  .contact-row { min-height: 128px; padding-inline: 5px; }
}
@media (max-width: 560px) {
  .contact-card { grid-template-columns: 1fr 1fr; }
  .contact-icon, .contact-icon svg { width: 46px; height: 46px; }
  .contact-row { min-height: 122px; }
}

/* v8 — melhor leitura dos indicadores no bloco Sobre + ajustes responsivos */
.about-list article {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
}
.about-list article > span {
  font-size: 17px;
  line-height: 1;
  letter-spacing: .08em;
  padding-top: 6px;
  min-width: 58px;
}

@media (max-width: 820px) {
  .about-list article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }
  .about-list article > span {
    font-size: 16px;
    min-width: 56px;
    padding-top: 5px;
  }
  .about-list h3 {
    font-size: 18px;
    line-height: 1.15;
  }
  .about-list p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  .about-list article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }
  .about-list article > span {
    font-size: 15px;
    min-width: 50px;
    padding-top: 4px;
  }
  .about-list h3 {
    font-size: 17px;
  }
  .about-list p {
    font-size: 12.5px;
  }
}
