/* ============================================================
   FIRE SOLUTION — estilo GetFire (bombeiros / departamento)
   Paleta: escuro #1A1A1A · laranja marca #E85D22 · branco
   ============================================================ */

:root{
  --orange:       #E85D22;
  --orange-dark:  #D94E1F;
  --orange-rgb:   232, 93, 34;
  --brown:        #4D443D;
  --dark:         #1A1A1A;
  --dark-2:       #252525;
  --dark-3:       #2E2E2E;
  --grey:         #6B6B6B;
  --grey-light:   #9A9A9A;
  --cream:        #F4F4F4;
  --white:        #FFFFFF;
  --line:         rgba(255,255,255,.1);
  --line-dark:    rgba(0,0,0,.08);

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Roboto', sans-serif;

  --container: 1200px;
  --header-h:  116px;
  --topbar-h:  44px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --ease:      cubic-bezier(.4, 0, .2, 1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .hero-title-accent::after{ width:100%; animation:none; }
}

body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.7;
  color:var(--dark);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; background:none; border:none; color:inherit; }
::selection{ background:var(--orange); color:var(--white); }

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

/* ================= TOPBAR ================= */
.topbar{
  background:var(--orange);
  color:var(--white);
  font-size:14px;
  font-weight:500;
  position:relative;
  z-index:1001;
}
.topbar-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:10px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 16px;
  text-align:center;
}
.topbar-label{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
}
.topbar a{
  font-weight:700;
  transition:opacity .2s;
}
.topbar a:hover{ opacity:.85; }
.topbar-sep{ opacity:.5; }

/* ================= TIPOGRAFIA DE SEÇÃO ================= */
.section-tag{
  font-family:var(--font-display);
  font-size:14px;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--orange);
  margin:0 0 10px;
}
.section-tag.light{ color:var(--orange); }
.section-title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(1.85rem, 4vw, 2.65rem);
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.02em;
  margin:0 0 18px;
  color:var(--dark);
}
.section-title.light{ color:var(--white); }
.section-head{ margin-bottom:48px; max-width:640px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-desc{ color:var(--grey); max-width:560px; margin:0; }
.section-head.center .section-desc{ margin-left:auto; margin-right:auto; }

/* ================= BOTÕES ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-display);
  font-size:13px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:12px 24px;
  border-radius:999px;
  border:2px solid transparent;
  transition:background .25s, color .25s, border-color .25s, transform .25s;
}
.btn svg{ width:16px; height:16px; flex:none; }

.btn-primary{
  background:var(--orange);
  color:var(--white);
  border-color:var(--orange);
}
.btn-primary:hover{
  background:var(--orange-dark);
  border-color:var(--orange-dark);
  transform:translateY(-2px);
}

.btn-outline{
  background:transparent;
  color:var(--white);
  border-color:var(--white);
}
.btn-outline:hover{
  background:var(--white);
  color:var(--dark);
}

.btn-outline-dark{
  background:transparent;
  color:var(--dark);
  border-color:var(--dark);
}
.btn-outline-dark:hover{
  background:var(--dark);
  color:var(--white);
}

.btn-lg{ padding:13px 26px; font-size:13px; }

/* ================= HEADER ================= */
.site-header{
  position:relative;
  z-index:1000;
  background:var(--brown);
  box-shadow:0 4px 24px rgba(0,0,0,.18);
}

.header-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:20px;
}

.brand picture,
.footer-brand picture{
  display:block;
  line-height:0;
}

.site-header .brand-logo{
  height:88px;
  width:auto;
  max-width:min(360px, 60vw);
  object-fit:contain;
}

.main-nav{
  margin-left:auto;
}
.main-nav ul{ display:flex; gap:2px; }
.nav-link{
  font-family:var(--font-display);
  font-size:14px;
  font-weight:500;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--white);
  padding:10px 16px;
  transition:color .2s;
}
.nav-link:hover{ color:var(--orange); }

.header-cta{ flex:none; }

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:32px;
  justify-content:center;
  flex:none;
}
.burger span{
  display:block;
  height:2px;
  background:var(--white);
  border-radius:999px;
  transition:transform .3s, opacity .3s;
}
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav{
  position:fixed;
  inset:0;
  z-index:999;
  background:var(--dark);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s, visibility .3s;
}
.mobile-nav.open{ opacity:1; visibility:visible; }
.mobile-nav ul{ display:flex; flex-direction:column; align-items:center; gap:14px; }
.mobile-link{
  font-family:var(--font-display);
  font-size:1.75rem;
  text-transform:uppercase;
  color:var(--white);
  letter-spacing:.04em;
}
.mobile-link:hover{ color:var(--orange); }

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height:420px;
  height:clamp(420px, 75vw, 820px);
  max-height:820px;
  display:flex;
  align-items:center;
  padding:56px 24px 80px;
  background:var(--dark);
  overflow:hidden;
  isolation:isolate;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-slides{
  position:absolute;
  inset:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .8s ease;
  overflow:hidden;
  background:var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-slide.active{ opacity:1; }
.hero-slide img,
.hero-slide picture,
.hero-slide picture img,
.hero-bg img,
.hero-bg picture,
.hero-bg picture img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  object-position:center center;
}
.hero-bg-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(105deg, rgba(26,26,26,.94) 0%, rgba(26,26,26,.78) 42%, rgba(26,26,26,.35) 72%, rgba(26,26,26,.55) 100%),
    linear-gradient(180deg, transparent 55%, rgba(26,26,26,.85) 100%);
}
.hero-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:3;
}
.hero-dots button{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  padding:0;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:background .25s ease, width .25s ease;
}
.hero-dots button.active{
  background:#fff;
  width:28px;
}
.hero-dots button:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}

.hero-accent{
  position:absolute;
  top:0;
  left:0;
  width:6px;
  height:clamp(120px, 28vh, 280px);
  background:var(--orange);
  z-index:2;
  transform-origin:top left;
  animation:heroAccentGrow .9s var(--ease) .2s both;
}

.hero-layout{
  position:relative;
  z-index:1;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:100%;
  text-align:center;
}

.hero-content{
  max-width:min(1100px, 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-family:var(--font-display);
  font-size:14px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--orange);
  margin:0 0 20px;
  animation:heroFadeUp .8s var(--ease) .15s both;
}
.hero-tag-line{
  width:42px;
  height:2px;
  background:var(--orange);
  flex:none;
}

.hero-title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(0.72rem, 1.7vw + 0.35rem, 2.15rem);
  line-height:1.25;
  text-transform:uppercase;
  color:var(--white);
  margin:0 0 22px;
  white-space:nowrap;
  max-width:none;
}
.hero-title-line{
  display:inline;
  animation:heroFadeUp .85s var(--ease) both;
  transition:opacity .22s ease, transform .22s ease;
}
.hero-title-line.is-switching{
  opacity:0;
  transform:translateY(8px);
}
.hero-title-line:nth-child(1){ animation-delay:.28s; }
.hero-title-line:nth-child(2){ animation-delay:.42s; }
.hero-title-accent{
  color:var(--orange);
  position:relative;
}
.hero-title-accent::after{
  content:"";
  position:absolute;
  left:0;
  bottom:.06em;
  width:0;
  height:3px;
  background:var(--orange);
  animation:heroUnderline 1s var(--ease) 1s forwards;
}

.hero-sub{
  font-size:1.06rem;
  color:rgba(255,255,255,.8);
  max-width:48ch;
  margin:0 0 34px;
  animation:heroFadeUp .85s var(--ease) .55s both;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  animation:heroFadeUp .85s var(--ease) .68s both;
}

.hero-btn-primary{
  position:relative;
  overflow:hidden;
}
.hero-btn-primary::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform:translateX(-120%);
  transition:transform .65s var(--ease);
}
.hero-btn-primary:hover::after{ transform:translateX(120%); }

.hero-hotline{
  position:relative;
  background:var(--orange);
  color:var(--white);
  padding:34px 30px 32px;
  clip-path:polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  box-shadow:0 24px 60px rgba(var(--orange-rgb), .38);
  animation:heroFadeUp .9s var(--ease) .75s both;
}
.hero-hotline::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(145deg, rgba(255,255,255,.14), transparent 55%);
  pointer-events:none;
}
.hero-hotline-icon{
  position:relative;
  width:52px;
  height:52px;
  border:2px solid rgba(255,255,255,.35);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}
.hero-hotline-icon svg{ width:24px; height:24px; }
.hero-hotline-pulse{
  position:absolute;
  inset:-6px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.45);
  animation:heroHotlinePulse 2.4s ease-out infinite;
}
.hero-hotline-label{
  font-family:var(--font-display);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin:0 0 8px;
  opacity:.9;
}
.hero-hotline-number{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight:600;
  letter-spacing:.02em;
  line-height:1.1;
  margin-bottom:10px;
  transition:opacity .2s;
}
.hero-hotline-number:hover{ opacity:.88; }
.hero-hotline-hint{
  margin:0;
  font-size:13px;
  opacity:.85;
}

.hero-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:clamp(40px, 6vh, 64px);
  animation:heroFadeUp .9s var(--ease) .9s both;
}
.hero-strip-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:20px 18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  backdrop-filter:blur(8px);
  transition:transform .3s var(--ease), border-color .3s, background .3s;
}
.hero-strip-item:hover{
  transform:translateY(-4px);
  border-color:rgba(var(--orange-rgb), .45);
  background:rgba(255,255,255,.1);
}
.hero-strip-icon{
  flex:none;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(var(--orange-rgb), .18);
  color:var(--orange);
}
.hero-strip-icon svg{ width:20px; height:20px; }
.hero-strip-item strong{
  display:block;
  font-family:var(--font-display);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--white);
  margin-bottom:4px;
}
.hero-strip-item span{
  font-size:13px;
  color:rgba(255,255,255,.65);
  line-height:1.45;
}

.hero-scroll{
  position:absolute;
  left:0;
  right:0;
  bottom:48px;
  z-index:3;
  margin-inline:auto;
  width:max-content;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.55);
  font-family:var(--font-display);
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  transition:color .25s;
  animation:heroFadeUp .8s var(--ease) 1.1s both;
}
.hero-scroll svg{
  width:18px;
  height:18px;
  animation:heroBounce 2s ease-in-out infinite;
}
.hero-scroll:hover{ color:var(--orange); }

@keyframes heroFadeUp{
  from{ opacity:0; transform:translateY(28px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes heroAccentGrow{
  from{ transform:scaleY(0); }
  to{ transform:scaleY(1); }
}
@keyframes heroUnderline{
  to{ width:100%; }
}
@keyframes heroHotlinePulse{
  0%{ transform:scale(1); opacity:.7; }
  100%{ transform:scale(1.35); opacity:0; }
}
@keyframes heroBounce{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(6px); }
}

/* ================= ABOUT ================= */
.section{ padding:90px 0; }
.section-about{
  background:var(--white);
  padding-top: 64px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-media{ position:relative; }
.about-media img,
.about-media picture,
.about-media picture img{
  width:100%;
  border-radius:var(--radius);
  aspect-ratio:4/3;
  object-fit:cover;
}

.about-badge{
  position:absolute;
  bottom:-20px;
  right:-10px;
  background:var(--orange);
  color:var(--white);
  padding:20px 24px;
  text-align:center;
  border-radius:var(--radius);
  box-shadow:0 12px 32px rgba(var(--orange-rgb), .35);
}
.about-badge strong{
  display:block;
  font-family:var(--font-display);
  font-size:2.5rem;
  line-height:1;
  font-weight:600;
}
.about-badge span{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.about-text p{ color:var(--grey); margin:0 0 18px; }

.about-pills{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin:28px 0 32px;
}
.about-pill{
  background:var(--cream);
  border-left:3px solid var(--orange);
  padding:14px 16px;
  border-radius:var(--radius-sm);
}
.about-pill strong{
  display:block;
  font-family:var(--font-display);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--dark);
  margin-bottom:2px;
}

.emergency-box{
  display:flex;
  align-items:center;
  gap:16px;
  background:var(--dark);
  color:var(--white);
  padding:18px 22px;
  border-radius:var(--radius);
  margin-top:24px;
}
.emergency-box svg{ width:36px; height:36px; flex:none; color:var(--orange); }
.emergency-box small{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--grey-light);
  margin-bottom:2px;
}
.emergency-box a{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:.02em;
}
.emergency-box a:hover{ color:var(--orange); }

/* ================= SERVIÇOS ================= */
.section-services{ background:var(--cream); }

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.service-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  transition:transform .3s, box-shadow .3s;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,.12);
}

.service-media{
  aspect-ratio:16/10;
  overflow:hidden;
  position:relative;
}
.service-media picture,
.service-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}
.service-media picture img,
.service-media img{
  object-fit:cover;
  transition:transform .5s;
}
.service-card:hover .service-media img,
.service-card:hover .service-media picture img{ transform:scale(1.06); }

.service-body{ padding:24px 22px 28px; flex:1; display:flex; flex-direction:column; }
.service-body h3{
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.03em;
  margin:0 0 10px;
  color:var(--dark);
}
.service-body p{
  font-size:.95rem;
  color:var(--grey);
  margin:0 0 16px;
  flex:1;
}
.service-link{
  font-family:var(--font-display);
  font-size:13px;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--orange);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.service-link svg{ width:14px; height:14px; transition:transform .25s; }
.service-link:hover{ color:var(--orange-dark); }
.service-link:hover svg{ transform:translateX(4px); }

.services-cta{ text-align:center; margin-top:40px; }

/* ================= STATS ================= */
.stats-band{
  background:var(--dark);
  padding:60px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  text-align:center;
}
.stat-item strong{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(2.2rem, 4vw, 3rem);
  font-weight:600;
  color:var(--orange);
  line-height:1;
  margin-bottom:8px;
}
.stat-item span{
  font-size:14px;
  color:rgba(255,255,255,.7);
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* ================= WHY ================= */
.section-why{ background:var(--white); }
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.why-list{ margin:24px 0 0; }
.why-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--line-dark);
  font-size:15px;
  color:var(--grey);
}
.why-list li:last-child{ border-bottom:none; }
.why-list svg{
  width:20px;
  height:20px;
  flex:none;
  color:var(--orange);
  margin-top:2px;
}
.why-media{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:#0a0a0a;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.why-media picture,
.why-media picture img,
.why-media img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center 18%;
  display:block;
}

/* ================= CLIENTES ================= */
.section-clientes{
  background:var(--white);
  overflow:hidden;
  padding-bottom:0;
}

.clients-marquee{
  overflow:hidden;
  padding:0 0 3.5rem;
  cursor:grab;
  touch-action:pan-y;
  user-select:none;
  -webkit-user-select:none;
}
.clients-marquee.is-dragging{
  cursor:grabbing;
}
.clients-marquee.is-dragging .client-logo img,
.clients-marquee.is-dragging .client-logo picture img{
  pointer-events:none;
}

.clients-track{
  display:flex;
  gap:2rem;
  width:max-content;
  will-change:transform;
}

.client-logo{
  height:13.5rem;
  width:fit-content;
  flex-shrink:0;
  background:var(--white);
  border-radius:0.85rem;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(15, 23, 42, 0.12);
  line-height:0;
}
.client-logo picture,
.client-logo picture img,
.client-logo img{
  height:13.5rem;
  width:auto;
  max-width:26rem;
  display:block;
  object-fit:contain;
  object-position:center;
  -webkit-user-drag:none;
  user-select:none;
  pointer-events:none;
}

@media (max-width: 640px){
  .client-logo{
    height:10.25rem;
  }
  .client-logo picture,
  .client-logo picture img,
  .client-logo img{
    height:10.25rem;
    max-width:20rem;
  }
  .clients-track{ gap:1.25rem; }
}

/* ================= CTA CALL ================= */
.cta-call{
  position:relative;
  background:var(--dark);
  padding:70px 24px;
  text-align:center;
  overflow:hidden;
  isolation:isolate;
}
.cta-call::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(rgba(232,93,34,.68), rgba(232,93,34,.68)),
    image-set(
      url('../assets/img/logo1.webp') type('image/webp'),
      url('../assets/img/logo1.png') type('image/png')
    ) center center no-repeat;
  background-size:100% 100%, 100% auto;
}
.cta-call-inner{
  position:relative;
  z-index:1;
  max-width:640px;
  margin:0 auto;
}
.cta-call .section-tag{ color:rgba(255,255,255,.85); }
.cta-call .section-title{ color:var(--white); margin-bottom:12px; }
.cta-call p{ color:rgba(255,255,255,.9); margin:0 0 8px; }
.cta-phone{
  font-family:var(--font-display);
  font-size:clamp(2rem, 5vw, 3rem);
  font-weight:600;
  color:var(--white);
  display:block;
  margin:16px 0 28px;
  letter-spacing:.02em;
}
.cta-phone:hover{ opacity:.9; }
.cta-call .btn-outline:hover{
  background:var(--dark);
  border-color:var(--dark);
  color:var(--white);
}

/* ================= CONTATO ================= */
.section-contato{ background:var(--white); }

.contato-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  margin-bottom:50px;
}

.info-list{ display:flex; flex-direction:column; gap:18px; margin:24px 0 28px; }
.info-list li{ display:flex; gap:14px; align-items:flex-start; }
.info-icon{
  flex:none;
  width:48px;
  height:48px;
  background:var(--cream);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
}
.info-icon svg{ width:20px; height:20px; }
.info-list strong{
  display:block;
  font-family:var(--font-display);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--grey);
  margin-bottom:4px;
}
.info-list a{ font-size:1rem; color:var(--dark); transition:color .2s; }
.info-list a:hover{ color:var(--orange); }

.social-row{ display:flex; gap:10px; }
.social-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--line-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dark);
  transition:all .25s;
}
.social-btn svg{ width:18px; height:18px; }
.social-btn:hover{
  background:var(--orange);
  border-color:var(--orange);
  color:var(--white);
}

.contato-form{
  background:var(--white);
  padding:40px 36px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 48px rgba(0,0,0,.08);
}
.contato-form-head{
  margin:0 0 28px;
}
.contato-form-head h3{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--dark);
  margin:0 0 8px;
}
.contato-form-head p{
  margin:0;
  font-size:.95rem;
  color:var(--grey);
  line-height:1.5;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field span{
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--grey);
}
.field input, .field textarea{
  width:100%;
  padding:14px 16px;
  border:1.5px solid #e2e2e2;
  border-radius:var(--radius);
  font-family:var(--font-body);
  font-size:15px;
  color:var(--dark);
  background:var(--cream);
  outline:none;
  transition:border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder{
  color:var(--grey-light);
}
.field input:hover, .field textarea:hover{
  border-color:#cfcfcf;
}
.field input:focus, .field textarea:focus{
  border-color:var(--orange);
  background:var(--white);
  box-shadow:0 0 0 4px rgba(var(--orange-rgb), .14);
}
.field textarea{ min-height:130px; resize:vertical; }

.checkbox-field{ display:flex; align-items:flex-start; gap:12px; cursor:pointer; margin:6px 0 24px; }
.checkbox-field input{ position:absolute; opacity:0; }
.checkbox-box{
  width:22px; height:22px;
  border:2px solid #ccc;
  border-radius:8px;
  flex:none;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  margin-top:1px;
  transition:all .2s;
}
.checkbox-box svg{ width:12px; height:12px; opacity:0; }
.checkbox-field input:checked + .checkbox-box{ background:var(--orange); border-color:var(--orange); }
.checkbox-field input:checked + .checkbox-box svg{ opacity:1; }
.checkbox-label{ font-size:14px; color:var(--grey); line-height:1.45; }

.btn-submit{
  width:100%;
  padding:15px 26px;
  box-shadow:0 10px 24px rgba(var(--orange-rgb), .28);
}
.btn-submit:hover{
  box-shadow:0 14px 28px rgba(var(--orange-rgb), .36);
}
.btn-submit.is-sent .btn-submit-text::after{ content:" ✓"; }
.form-note{ font-size:13px; color:var(--grey); text-align:center; margin:14px 0 0; line-height:1.5; }

.map-plate{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 12px 36px rgba(0,0,0,.1);
}
.map-plate iframe{ display:block; width:100%; }

/* ================= FOOTER ================= */
.site-footer{
  background:var(--dark-2);
  color:rgba(255,255,255,.75);
  padding-top:60px;
}

.footer-emergency{
  background:var(--orange);
  padding:20px 24px;
  margin-bottom:50px;
}
.footer-emergency-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px 24px;
  color:var(--white);
  text-align:center;
}
.footer-emergency strong{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:14px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr 1fr;
  gap:40px;
  padding-bottom:50px;
}
.footer-brand .brand-logo{
  height:56px;
  width:auto;
  max-width:min(220px, 100%);
  object-fit:contain;
  display:block;
  margin-bottom:16px;
  filter:brightness(1.1);
}
.footer-brand p{ font-size:14px; line-height:1.7; margin:0 0 18px; }

.footer-col h5{
  font-family:var(--font-display);
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--white);
  margin:0 0 18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a, .footer-col li{
  font-size:14px;
  color:rgba(255,255,255,.65);
  transition:color .2s;
}
.footer-col a:hover{ color:var(--orange); }
.link-btn{
  font-size:14px;
  color:rgba(255,255,255,.65);
  padding:0;
  transition:color .2s;
}
.link-btn:hover{ color:var(--orange); }

.footer-brand .copy-btn{
  border-color:rgba(255,255,255,.25);
  color:rgba(255,255,255,.6);
}
.footer-brand .copy-btn:hover{
  border-color:var(--orange);
  color:var(--orange);
}
.footer-brand .social-btn{
  border-color:rgba(255,255,255,.3);
  color:rgba(255,255,255,.9);
}
.footer-brand .social-btn:hover{
  background:var(--orange);
  border-color:var(--orange);
  color:var(--white);
}

.footer-bottom{
  border-top:1px solid var(--line);
  padding:20px 24px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.45);
  max-width:var(--container);
  margin:0 auto;
}

/* ================= REVEAL ================= */
.js .reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ================= FAB / TOAST / MODAL ================= */
.fab{
  position:fixed;
  z-index:900;
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 24px rgba(0,0,0,.25);
  transition:transform .25s;
}
.fab:hover{ transform:scale(1.08); }
.fab-whatsapp{ left:20px; bottom:20px; background:#25D366; color:#fff; }
.fab-whatsapp svg{ width:26px; height:26px; position:relative; z-index:1; }
.fab-ping{
  position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:.45;
  animation:ping 2.5s ease-out infinite;
}
@keyframes ping{ 0%{ transform:scale(1); opacity:.45; } 100%{ transform:scale(1.8); opacity:0; } }

.fab-top{
  right:20px; bottom:20px;
  background:var(--white);
  color:var(--dark);
  border:1px solid #ddd;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s, transform .25s, visibility .25s;
}
.fab-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.fab-top svg{ width:22px; height:22px; }

.copy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px; height:26px;
  margin-left:6px;
  vertical-align:middle;
  border:1px solid var(--line-dark);
  border-radius:8px;
  color:var(--grey);
  transition:all .2s;
}
.copy-btn svg{ width:13px; height:13px; }
.copy-btn:hover{ border-color:var(--orange); color:var(--orange); }
.copy-btn.copied{ border-color:var(--orange); color:var(--orange); }

.toast{
  position:fixed;
  left:50%; bottom:28px;
  transform:translate(-50%, 12px);
  background:var(--dark);
  color:var(--white);
  font-size:14px;
  padding:12px 20px;
  border-radius:var(--radius);
  z-index:1200;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s, transform .25s;
}
.toast.show{ opacity:1; transform:translate(-50%, 0); }

.modal{
  position:fixed; inset:0; z-index:1100;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition:opacity .25s, visibility .25s;
}
.modal.open{ opacity:1; visibility:visible; }
.modal-backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.65);
}
.modal-panel{
  position:relative;
  max-width:520px; width:100%;
  background:var(--white);
  padding:36px;
  border-radius:var(--radius-lg);
  max-height:85vh;
  overflow:auto;
}
.modal-panel h3{
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:1.4rem;
  margin:0 0 16px;
}
.modal-body p{ color:var(--grey); font-size:15px; margin:0 0 12px; }
.modal-body a{ color:var(--orange); }
.modal-close{
  position:absolute; top:14px; right:14px;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  color:var(--grey);
}
.modal-close:hover{ color:var(--orange); }
.modal-close svg{ width:20px; height:20px; }

/* ================= PÁGINAS INTERNAS ================= */
.page-hero{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--dark);
  color:var(--white);
  padding:48px 24px;
  min-height:clamp(220px, 32vw, 300px);
  text-align:center;
  overflow:hidden;
  isolation:isolate;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(135deg, rgba(26,26,26,.68) 0%, rgba(26,26,26,.42) 72%, rgba(232,93,34,.08) 100%),
    url("../assets/img/hero.webp") center center no-repeat;
  background-size:100% 100%, 100% auto;
}
.page-hero::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background:var(--orange);
  z-index:2;
}
.page-hero-inner{
  position:relative;
  z-index:1;
  max-width:560px;
  margin:0 auto;
  width:100%;
}
.page-hero .section-tag{
  color:var(--orange);
  font-size:12px;
  margin-bottom:6px;
}
.page-hero h1{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(1.55rem, 3.2vw, 2rem);
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.02em;
  margin:0 0 8px;
}
.page-hero p{
  margin:0 auto;
  max-width:28rem;
  color:rgba(255,255,255,.72);
  font-size:.92rem;
  line-height:1.5;
}

.page-section{ background:var(--cream); }
.page-section.alt{ background:var(--white); }

.content-box{
  background:var(--white);
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  border-left:3px solid var(--orange);
}
.content-box p{
  color:var(--grey);
  margin:0 0 16px;
}
.content-box p:last-child{ margin-bottom:0; }

.list-checks{
  display:grid;
  gap:12px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.list-checks li{
  position:relative;
  padding-left:28px;
  color:var(--grey);
  line-height:1.55;
}
.list-checks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--orange);
  font-weight:700;
  font-size:14px;
}

.about-page-stack{
  display:grid;
  gap:40px;
}
.about-facade{
  margin:0;
}
.about-facade img{
  width:100%;
  border-radius:var(--radius);
  display:block;
  aspect-ratio:21/9;
  object-fit:cover;
  box-shadow:0 4px 24px rgba(0,0,0,.1);
}

.two-col{
  display:grid;
  gap:40px;
  align-items:start;
}
.side-stack{
  display:grid;
  gap:16px;
}
.side-stack img{
  width:100%;
  border-radius:var(--radius);
  aspect-ratio:4/3;
  object-fit:cover;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.service-split{
  display:grid;
  gap:0;
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  margin-bottom:28px;
  align-items:stretch;
}
.service-visual{
  position:relative;
  overflow:hidden;
  min-height:240px;
  aspect-ratio:4/3;
  background:var(--dark-2);
}
.service-visual picture,
.service-visual picture img,
.service-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.service-copy{
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-copy h3{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.03em;
  margin:0 0 12px;
  color:var(--dark);
}
.service-copy p{
  color:var(--grey);
  margin:0 0 12px;
  line-height:1.7;
}
.service-copy .btn{ align-self:flex-start; margin-top:8px; }

.service-highlights{
  display:grid;
  gap:20px;
  margin:8px 0 36px;
}
.service-block{
  background:var(--white);
  border-radius:var(--radius);
  padding:28px 24px;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  border-top:3px solid var(--orange);
}
.service-block h3{
  font-family:var(--font-display);
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:.03em;
  margin:0 0 12px;
  color:var(--dark);
}
.service-block p{
  color:var(--grey);
  margin:0;
  line-height:1.65;
}
.service-block .list-checks{ margin-top:14px; }

.spda-contact{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin:12px 0 4px;
  padding:16px 18px;
  background:rgba(var(--orange-rgb), .08);
  border-left:3px solid var(--orange);
}
.spda-contact strong{
  font-family:var(--font-display);
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:13px;
  color:var(--dark);
}
.spda-contact a{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:600;
  color:var(--orange);
}
.spda-contact a:hover{ color:var(--orange-dark); }

.page-cta{
  text-align:center;
  margin-top:12px;
}

.nav-link.active,
.mobile-link.active{
  color:var(--orange);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px){
  .main-nav, .header-cta{ display:none; }
  .burger{ display:flex; margin-left:auto; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-hotline{ max-width:360px; }
  .hero-strip{ grid-template-columns:1fr; }
  .hero-scroll{ display:none; }
  .hero{ padding-bottom:72px; }
  .hero-dots{ bottom:20px; }
  .section-about{ padding-top:64px; }
  .about-grid, .why-grid, .contato-grid{ grid-template-columns:1fr; }
  .about-badge{ right:10px; bottom:-10px; }
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
  .stats-grid{ grid-template-columns:repeat(2, 1fr); gap:32px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .about-pills{ grid-template-columns:1fr; }
}

@media (min-width: 900px){
  .two-col{ grid-template-columns:1.15fr .85fr; }
  .service-split{ grid-template-columns:.9fr 1.1fr; }
  .service-split.reverse{ grid-template-columns:1.1fr .9fr; }
  .service-split.reverse .service-visual{ order:2; }
  .service-visual{ aspect-ratio:auto; height:100%; min-height:0; }
  .service-highlights{ grid-template-columns:repeat(3, 1fr); }
}

/* SEO: índice de serviços e âncoras */
.service-index{
  margin-top:40px;
  margin-bottom:40px;
  padding-top:32px;
  border-top:1px solid rgba(0,0,0,.08);
}
.service-index h3{
  font-family:var(--font-display);
  font-size:1rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:16px;
  color:var(--dark);
}
.service-index ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  list-style:none;
}
.service-index a{
  font-size:.95rem;
  color:var(--grey);
  transition:color .2s;
}
.service-index a:hover{ color:var(--orange); }
.service-index:first-child{
  margin-top:0;
  padding-top:0;
  border-top:0;
}
.service-split[id]{ scroll-margin-top:24px; }

@media (max-width: 640px){
  :root{ --header-h: 100px; }
  .site-header .brand-logo{ height:72px; }
  .section{ padding:64px 0; }
  .hero{
    align-items:center;
    min-height:320px;
    height:clamp(320px, 75vw, 540px);
    max-height:540px;
    padding-top:48px;
    padding-bottom:64px;
  }
  .hero-strip{ margin-top:32px; gap:12px; }
  .hero-dots{ bottom:16px; }
  .section-about{ padding-top:48px; }
  .hero-hotline{ max-width:none; }
  .services-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .page-hero{
    padding:32px 20px;
    min-height:clamp(200px, 38vw, 260px);
  }
  .content-box, .service-copy{ padding:24px 20px; }
}
