/* ============================================================
   DECCOR GLASS · Envidraçamento de Sacadas · São José dos Campos
   Identidade: índigo #3E4095 + azul #00AFEF
   Tipografia: Saira Condensed / Poppins
   ============================================================ */

:root {
  --indigo-950: #12142F;
  --indigo-900: #191B45;
  --indigo-850: #21245A;
  --indigo-800: #2A2C6B;
  --indigo-700: #3E4095;
  --indigo-600: #4E51B5;
  --blue: #00AFEF;
  --blue-300: #4CC9F7;
  --blue-100: #86C1E9;
  --blue-700: #0079A8;
  --white: #FFFFFF;
  --ice: #D8E1FA;
  --ice-dim: #9AA5D0;

  --header-h: 88px;
  --maxw: 1200px;
  --pad: 24px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  background: var(--indigo-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 17px 34px; border-radius: 4px; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 30px rgba(0,175,239,.32); }
.btn-primary:hover { background: var(--blue-300); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.42); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  z-index: 100; display: flex; align-items: center;
  background: var(--indigo-950);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
#header.scrolled { height: 70px; box-shadow: 0 6px 24px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--white); }
.brand-mark { height: 56px; width: auto; flex-shrink: 0; transition: height .3s ease; }
#header.scrolled .brand-mark { height: 46px; }
.brand-name {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700; font-size: 23px; letter-spacing: 2px; text-transform: uppercase; line-height: 1;
}
.brand-name b { color: var(--blue-300); font-weight: 800; }
.brand-name small {
  display: block; margin-top: 4px;
  font-size: 12px; letter-spacing: 3px; font-weight: 500; color: var(--ice-dim);
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 17px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,.82); position: relative; padding: 4px 0; transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--blue); transition: width .25s ease;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

/* ---------- Kicker / títulos ---------- */
.kicker {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 18px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue-300); margin-bottom: 24px;
}
.kicker-line { width: 46px; height: 2px; background: var(--blue); display: inline-block; flex-shrink: 0; }
.kicker-center { justify-content: center; }

.section-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: clamp(36px, 5vw, 60px);
  line-height: .94; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.section-title .accent { font-style: italic; font-weight: 700; color: var(--blue-300); }
.section-sub { font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--ice); max-width: 640px; margin-top: 20px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(76,201,247,.22), transparent 46%),
    radial-gradient(circle at 10% 88%, rgba(0,175,239,.16), transparent 42%),
    linear-gradient(135deg, #12142F 0%, #2A2C6B 48%, #3E4095 100%);
}
.hero-img { transform: scale(1.04); }
.hero-video { transform: scale(1.16); }
.hero-img,
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 66% center; z-index: 1;
  transform-origin: 66% top;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(18,20,47,.94) 0%, rgba(18,20,47,.84) 26%,
      rgba(25,27,69,.52) 52%, rgba(25,27,69,.2) 76%, rgba(25,27,69,.08) 100%),
    linear-gradient(0deg, rgba(18,20,47,.6) 0%, transparent 34%);
}
.hero-inner { position: relative; z-index: 3; padding-top: var(--header-h); }
.hero-inner .kicker, .hero-title, .hero-sub, .hero-proof { text-shadow: 0 2px 20px rgba(10,12,32,.7); }

.hero-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: clamp(52px, 7.2vw, 102px);
  line-height: .9; letter-spacing: 1px; text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(0,0,0,.45);
}
.hero-title .accent { font-style: italic; font-weight: 700; color: var(--blue-300); }
.hero-sub { margin: 28px 0 36px; max-width: 590px; font-size: 19px; font-weight: 300; line-height: 1.68; color: var(--ice); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 26px; margin-top: 46px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ice); }
.proof-item b { color: var(--white); font-weight: 600; }
.proof-item svg { color: var(--blue-300); flex-shrink: 0; }
.proof-divider { width: 1px; height: 26px; background: rgba(255,255,255,.2); }

/* ---------- Glows de seção ---------- */
.about > .container, .services > .container, .benefits > .container,
.process > .container, .gallery > .container, .reviews > .container,
.faq > .container, .contact > .container { position: relative; z-index: 1; }

.about::before, .services::before, .benefits::before, .process::before,
.gallery::before, .reviews::before, .faq::before, .contact::before {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  width: 70vw; height: 70vw; max-width: 880px; max-height: 880px; border-radius: 50%;
}
.about::before    { top: -14%;   right: -8%;  background: radial-gradient(circle, rgba(76,201,247,.15), transparent 62%); }
.services::before { top: -10%;   left: -12%;  background: radial-gradient(circle, rgba(0,175,239,.14), transparent 62%); }
.benefits::before { top: -8%;    right: -10%; background: radial-gradient(circle, rgba(76,201,247,.13), transparent 62%); }
.process::before  { bottom: -18%; left: -12%; background: radial-gradient(circle, rgba(0,175,239,.12), transparent 62%); }
.gallery::before  { bottom: -16%; right: -10%; background: radial-gradient(circle, rgba(76,201,247,.14), transparent 62%); }
.reviews::before  { top: 4%;     left: -14%;  background: radial-gradient(circle, rgba(0,175,239,.12), transparent 62%); }
.faq::before      { top: 6%;     right: -14%; background: radial-gradient(circle, rgba(0,175,239,.10), transparent 62%); }
.contact::before  { top: 10%;    left: -14%;  background: radial-gradient(circle, rgba(76,201,247,.12), transparent 62%); }

/* ---------- QUEM SOMOS ---------- */
.about { background: var(--indigo-900); padding: 110px 0; position: relative; overflow: hidden; }
.about-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 68px; align-items: center; }
.about-media { position: relative; }
.about-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(150deg, #2A2C6B 0%, #3E4095 60%, #12142F 100%);
}
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(42,44,107,.16), rgba(18,20,47,.3)); }
.about-photo-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.28); padding: 5px 12px; border-radius: 3px; background: rgba(18,20,47,.35);
}
.about-badge {
  position: absolute; right: -22px; bottom: 40px; z-index: 3;
  background: var(--blue); color: var(--white); padding: 20px 24px; border-radius: 6px;
  display: flex; align-items: center; gap: 14px; box-shadow: 0 16px 40px rgba(0,175,239,.4);
}
.about-badge strong { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 54px; line-height: .85; }
.about-badge span { font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.15; }

.about-quote {
  position: relative; margin-top: 22px; padding: 22px 26px;
  border-left: 3px solid var(--blue); background: rgba(255,255,255,.04);
  border-radius: 0 8px 8px 0; font-size: 17px; font-weight: 300; line-height: 1.78; color: var(--ice); font-style: italic;
}
.about-p { font-size: 17px; font-weight: 300; line-height: 1.78; color: var(--ice); margin-top: 20px; max-width: 610px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; padding-top: 38px; border-top: 1px solid rgba(255,255,255,.12); }
.stat-num { display: block; font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 44px; line-height: 1; color: var(--blue-300); }
.stat-label { display: block; margin-top: 8px; font-family: 'Saira Condensed', sans-serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--ice-dim); line-height: 1.3; }
.about-cta { margin-top: 38px; }

/* ---------- SERVIÇOS (abas) ---------- */
.services {
  background: linear-gradient(180deg, #12142F 0%, #2A2C6B 100%);
  padding: 110px 0; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.services-head { margin-bottom: 40px; }
.service-panels { display: grid; }
.service-panel {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: 1fr 1.05fr; min-height: 560px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease;
}
.service-panel.active { opacity: 1; visibility: visible; pointer-events: auto; }
.service-image {
  position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(76,201,247,.22), transparent 55%),
              linear-gradient(150deg, #3E4095 0%, #2A2C6B 60%, #12142F 100%);
  overflow: hidden;
}
.service-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(42,44,107,.2), rgba(18,20,47,.34)); }
.service-image.no-photo::after { background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 16px); }
.svc-watermark { width: 110px; height: 110px; color: rgba(255,255,255,.22); position: relative; z-index: 1; }
.svc-imgtag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.28); padding: 5px 12px; border-radius: 3px; background: rgba(18,20,47,.35);
}
.service-detail { padding: 46px 44px; }
.svc-counter { font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 5px; color: var(--blue-300); margin-bottom: 14px; }
.svc-title { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: clamp(30px, 3.4vw, 44px); line-height: .96; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.svc-desc { font-size: 17px; font-weight: 300; line-height: 1.68; color: var(--ice); margin-bottom: 24px; }
.svc-list { list-style: none; margin-bottom: 30px; }
.svc-list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 16px; font-weight: 300; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.07); }
.svc-list li svg { color: var(--blue-300); flex-shrink: 0; }
.svc-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.service-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 20px; border-radius: 10px; cursor: pointer; text-align: left;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.02);
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ice); transition: all .2s ease;
}
.svc-tab-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300); border: 1px solid rgba(76,201,247,.35); background: rgba(0,175,239,.08);
}
.service-tab:hover { border-color: var(--blue); color: var(--white); }
.service-tab.active { border-color: var(--blue); background: rgba(0,175,239,.12); color: var(--white); }
.service-tab.active .svc-tab-icon { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---------- BENEFÍCIOS ---------- */
.benefits { background: var(--indigo-900); padding: 110px 0; position: relative; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.ben-head { margin-bottom: 44px; }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ben-card {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 30px 26px 32px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.ben-card:hover { transform: translateY(-5px); border-color: var(--blue); background: rgba(0,175,239,.08); }
.ben-icon {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--blue-300); border: 1px solid rgba(76,201,247,.4); background: rgba(0,175,239,.1); margin-bottom: 20px;
}
.ben-card h3 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: .6px; text-transform: uppercase; line-height: 1.05; margin-bottom: 12px; }
.ben-card p { font-size: 15px; font-weight: 300; line-height: 1.65; color: var(--ice); }

/* ---------- COMO FUNCIONA ---------- */
.process {
  background: linear-gradient(180deg, #2A2C6B 0%, #12142F 100%);
  padding: 110px 0; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.process-head { margin-bottom: 46px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step { position: relative; padding-top: 26px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.12); }
.step.done::before { background: var(--blue); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(0,175,239,.12); border: 1px solid rgba(76,201,247,.45); color: var(--blue-300);
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 18px;
}
.step h3 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 23px; text-transform: uppercase; letter-spacing: .6px; line-height: 1.05; margin-bottom: 10px; }
.step p { font-size: 15px; font-weight: 300; line-height: 1.65; color: var(--ice); }
.process-cta { margin-top: 46px; text-align: center; }

/* ---------- GALERIA ---------- */
.gallery { background: var(--indigo-900); padding: 110px 0; position: relative; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.gallery-grid {
  display: grid; grid-template-columns: 1.1fr 1fr 1.1fr;
  grid-template-rows: 240px 170px 240px;
  grid-template-areas: "a b c" "a d c" "e f c"; gap: 16px;
}
.g-a { grid-area: a; } .g-b { grid-area: b; } .g-c { grid-area: c; }
.g-d { grid-area: d; } .g-e { grid-area: e; } .g-f { grid-area: f; }
.g-item {
  position: relative; border-radius: 10px; overflow: hidden; margin: 0;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(150deg, #3E4095, #12142F);
  transition: transform .3s ease, box-shadow .3s ease;
}
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,20,47,.04), rgba(18,20,47,.26)); }
.g-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.gallery-cta { text-align: center; margin-top: 42px; }

/* ---------- DEPOIMENTOS ---------- */
.reviews {
  background: linear-gradient(180deg, #12142F 0%, #2A2C6B 100%);
  padding: 110px 0; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.reviews-head { margin-bottom: 44px; }
.reviews-carousel { position: relative; }
.reviews-track {
  display: flex; gap: 18px; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 30px 28px;
  transition: transform .25s ease, border-color .25s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(76,201,247,.5); }
.review-stars { color: #FFC542; letter-spacing: 3px; font-size: 16px; margin-bottom: 16px; }
.review-card p:not(.review-stars) { font-size: 15px; font-weight: 300; line-height: 1.72; color: var(--ice); margin-bottom: 22px; }
.review-author { margin-top: auto; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.08); }
.review-author strong {
  display: block; margin-top: 16px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: .6px;
}
.review-author span { display: block; font-size: 13px; color: var(--ice-dim); }

.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.rev-btn {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.18); color: var(--white);
  transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.rev-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.rev-btn[disabled] { opacity: .3; cursor: default; }
.rev-btn[disabled]:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18); color: var(--white); }
.reviews-dots { display: flex; align-items: center; gap: 9px; }
.rev-dot {
  width: 9px; height: 9px; border-radius: 50%; cursor: pointer; padding: 0;
  border: none; background: rgba(255,255,255,.24); transition: background .2s ease, width .2s ease;
}
.rev-dot.active { background: var(--blue); width: 26px; border-radius: 5px; }

/* ---------- CONDIÇÕES ---------- */
.terms { background: var(--indigo-950); padding: 58px 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.terms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.term { display: flex; gap: 16px; align-items: flex-start; }
.term-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300); border: 1px solid rgba(76,201,247,.4); background: rgba(0,175,239,.09);
}
.term h4 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 21px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px; }
.term p { font-size: 14px; font-weight: 300; line-height: 1.6; color: var(--ice-dim); }

/* ---------- FAQ ---------- */
.faq { background: var(--indigo-900); padding: 110px 0; position: relative; overflow: hidden; }
.faq-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; transition: border-color .25s ease; }
.faq-item.open { border-color: rgba(0,175,239,.45); background: rgba(0,175,239,.07); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: .6px;
  color: var(--white); transition: color .2s ease;
}
.faq-q:hover { color: var(--blue-300); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(76,201,247,.5); color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 24px; font-size: 16px; font-weight: 300; line-height: 1.72; color: var(--ice); }

/* ---------- CONTATO ---------- */
.contact {
  background: linear-gradient(180deg, #2A2C6B 0%, #12142F 100%);
  padding: 110px 0; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.contact-head { margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }

.contact-info,
.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info { padding: 22px 32px; }

.info-block {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-block:last-child { border-bottom: none; }
.info-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300); border: 1px solid rgba(76,201,247,.4); background: rgba(0,175,239,.09);
}
.info-block h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--ice-dim); margin-bottom: 5px;
}
.info-block p, .info-block a { font-size: 17px; line-height: 1.45; color: var(--white); display: block; }
.info-block a { transition: color .2s ease; }
.info-block a:hover { color: var(--blue-300); }

.contact-card { padding: 40px 34px; text-align: center; }
.contact-card img { width: 104px; height: auto; margin: 0 auto 20px; display: block; }
.contact-card h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: .8px;
  line-height: 1.05; margin-bottom: 12px;
}
.contact-card p { font-size: 15px; font-weight: 300; line-height: 1.68; color: var(--ice); margin-bottom: 26px; max-width: 380px; margin-left: auto; margin-right: auto; }
.contact-card .btn { width: 100%; font-size: 18px; padding: 16px 20px; }

/* ---------- RODAPÉ ---------- */
.site-footer { background: #0B0D22; padding: 70px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 92px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 15px; line-height: 1.62; color: var(--ice-dim); max-width: 320px; margin-bottom: 18px; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--blue-300); margin-right: 18px; }
.footer-social:hover { color: var(--white); }
.footer-col h5 { font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 15px; line-height: 1.55; color: var(--ice-dim); margin-bottom: 10px; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--blue-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 14px; color: var(--ice-dim); }
.footer-credit a { color: var(--white); font-weight: 500; }
.footer-credit a:hover { color: var(--blue-300); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .review-card { flex: 0 0 calc((100% - 18px) / 2); }
  .terms-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}

@media (max-width: 980px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(18,20,47,.98); backdrop-filter: blur(10px);
    padding: 14px var(--pad) 22px; border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 44px rgba(0,0,0,.5); display: none;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 19px; padding: 13px 0; width: 100%; }
  .nav a::after { display: none; }
  .menu-toggle { display: flex; }
  .brand-name small { display: none; }
  .svc-tabs { grid-template-columns: repeat(2, 1fr); }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 900px) {
  .about, .services, .benefits, .process, .gallery, .reviews, .faq, .contact { padding: 78px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 54px; }
  .about-media { max-width: 430px; }
  .about-badge { right: 16px; }
  .service-panel { grid-template-columns: 1fr; }
  .service-panel { min-height: 0; }
  .service-image { min-height: 280px; }
  .service-detail { padding: 34px 26px; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px;
    grid-template-areas: "a b" "a d" "e f";
  }
  .g-c { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  .brand-mark { height: 46px; }
  .brand-name { font-size: 19px; }
  .hero-sub { font-size: 17px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1; min-width: 0; padding: 16px 8px; font-size: 15px; letter-spacing: .5px; text-align: center; line-height: 1.15; }
  .hero-proof { gap: 14px; margin-top: 34px; }
  .proof-divider { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .stat-num { font-size: 38px; }
  .ben-grid, .steps, .terms-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 100%; }
  .svc-tabs { grid-template-columns: 1fr; gap: 10px; }
  .service-tab { flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
  .gallery-grid {
    grid-template-columns: 1fr; grid-template-rows: repeat(5, 210px);
    grid-template-areas: "a" "b" "d" "e" "f";
  }
  .contact-card { padding: 30px 22px; }
}

@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (min-width: 1200px) { :root { --pad: 48px; } }
