/* ============================================
   ElevoClean — Design tokens
   ============================================ */
:root {
  --indigo: #3803C5;
  --indigo-dark: #2A02A0;
  --baby-blue: #DCEBFA;   /* tom "azul bebê" citado pelo cliente, usado como apoio */
  --ink-deep: #0F1B3D;    /* footer — navy sólido, usado como âncora */
  --void: #120A2E;        /* ponta escura do gradiente roxo, fiel ao site original */
  --lime: #D4EC02;
  --lime-dark: #A9BC00;
  --gradient-dark: linear-gradient(100deg, var(--void) 0%, var(--indigo) 70%, #4B13BF 100%);

  --bg: #FBFAF8;
  --bg-alt: #EDF3FB;
  --white: #FFFFFF;

  --ink: #191428;
  --muted: #5C5770;
  --hairline: #E4E1EC;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --container: 1180px;
  --gutter: 28px;

  --shadow-card: 0 20px 45px -25px rgba(20, 8, 47, 0.35);
  --shadow-soft: 0 12px 30px -18px rgba(20, 8, 47, 0.25);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--indigo);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

em { font-style: normal; color: var(--indigo); font-weight: 800; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--indigo-dark); }
.btn-primary .icon { width: 18px; height: 18px; fill: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-lime {
  background: var(--lime);
  color: var(--ink-deep);
  box-shadow: var(--shadow-soft);
}
.btn-lime:hover { background: var(--lime-dark); }
.btn-small { padding: 11px 20px; font-size: 0.9rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; }
.brand-mark { height: 40px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: var(--indigo); border-color: var(--indigo); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================
   Hero
   ============================================ */
.hero { padding-top: 64px; background: var(--gradient-dark); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 { color: #fff; }
.hero-copy h1 em { color: var(--lime); }
.hero-copy h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  line-height: 1.12;
}
.hero-lead {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 1.13rem;
  color: #CFC8E9;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-ctas .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.hero-ctas .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.icon-check {
  width: 20px;
  height: 20px;
  flex: none;
  stroke: var(--lime);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: visible;
}
.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.hero-badge {
  position: absolute;
  left: -24px;
  bottom: 32px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-score {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}
.hero-badge-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}
.hero-badge-text strong { color: var(--ink); }

.stats-strip {
  background: transparent;
  margin-top: 88px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 36px 28px;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: #C8C3DE;
}

/* ============================================
   Sections — generic
   ============================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.2;
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ============================================
   Sobre
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.about-copy h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1.18;
}
.about-copy p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 46ch;
}
.about-signature {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
}
.about-signature strong { color: var(--ink); }

.pillars {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillars li {
  background: var(--indigo);
  border-radius: var(--radius-m);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.pillars h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}
.pillars p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #DCD5F5;
}

/* ============================================
   Áreas atendidas
   ============================================ */
.regions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.region-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-m);
  padding: 20px 26px;
  min-width: 200px;
}
.region-card .icon-pin {
  width: 26px;
  height: 26px;
  flex: none;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.8;
}
.region-card h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}
.region-card p {
  margin-top: 2px;
  font-size: 0.85rem;
  color: #C3BEDD;
}

/* ============================================
   Serviços
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-m);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.service-card-text {
  padding: 22px 22px 26px;
}
.service-card-text h3 {
  font-size: 1.08rem;
  font-weight: 700;
}
.service-card-text p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.more-services {
  margin-top: 48px;
  text-align: center;
}
.more-services-label {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.chip-list li {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

/* ============================================
   Seção escura (Autoridade / vídeos)
   ============================================ */
.section-dark { background: var(--gradient-dark); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: #C3BEDD; }
.section-dark em { color: var(--lime); }
.section-dark .more-services-label { color: #fff; }
.section-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.section-dark .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================
   Galeria de vídeos
   ============================================ */

.video-gallery-head { text-align: center; margin-bottom: 32px; }
.video-gallery-head h3 {
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  border-radius: var(--radius-m);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: var(--ink-deep);
}
.video-card p {
  padding: 12px 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}
.section-dark .video-gallery-head h3 { color: #fff; }
.section-dark .video-card { background: rgba(255,255,255,0.06); box-shadow: 0 16px 34px -22px rgba(0,0,0,0.55); }
.section-dark .video-card p { color: #E4E0F4; }

/* ============================================
   Galeria
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================
   Depoimentos
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.testimonial-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}
.stars { color: var(--lime-dark); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-card p {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.5;
}
.testimonial-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
}

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

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-s);
  padding: 22px 26px;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--indigo);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* ============================================
   CTA final — com parallax
   ============================================ */
.cta-final {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  isolation: isolate;
  background-image: url('assets/img/gallery-05.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18,10,46,0.93) 0%, rgba(56,3,197,0.85) 70%, rgba(75,19,191,0.78) 100%);
  z-index: -1;
}
.cta-final-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-final h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1.25;
}
.cta-final p {
  margin-top: 16px;
  color: #DCD5F5;
  font-size: 1.08rem;
}
.cta-final .btn { margin-top: 32px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink-deep);
  color: #C8C3DE;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-brand p { max-width: 32ch; font-size: 0.95rem; }
.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-size: 0.85rem;
  color: #9089AC;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom strong { color: #C8C3DE; }

/* ============================================
   WhatsApp float
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 90;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); background: #20BD5C; }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { margin: 0 auto 8px; }
  .about-media img { max-width: 480px; margin: 0 auto; display: block; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .stats-strip { margin-top: 64px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    border-bottom: 1px solid var(--hairline);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
  .nav-toggle { display: flex; }
  .header-actions .btn-small span { display: none; }
  .header-actions .btn-small { padding: 11px; border-radius: 50%; }
  .header-actions .btn-small .icon { width: 20px; height: 20px; margin: 0; }

  .hero { padding-top: 40px; }
  .hero-copy h1 { font-size: clamp(1.7rem, 7.5vw, 2.4rem); white-space: nowrap; }
  .hero-badge { left: 12px; bottom: 16px; padding: 12px 16px; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }

  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .video-gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-final { padding: 72px 0; background-attachment: scroll; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
