/* =========================================================
   Ótica Visioclick — style.css
   Design de referência: template Edigital (agência digital)
   Adaptado à marca: verde-900 escuro + accent verde-claro
   ========================================================= */

:root {
  /* Tema (equivalente Edigital: preto #0D0D0D + lima #88FF2A) */
  --bg: #0B2315;            /* fundo principal (verde-preto) */
  --bg-2: #0E2A1A;          /* superfície/cards */
  --bg-3: #12341F;          /* hover de superfícies */
  --panel: #10301E;         /* painéis/mapa */
  --accent: #8FBE6A;        /* accent principal (verde-claro da marca) */
  --accent-2: #A9D183;      /* hover do accent */
  --accent-dark: #1F3D12;   /* texto sobre accent */
  --white: #FFFFFF;
  --text: rgba(255, 255, 255, .62);   /* corpo de texto */
  --headings: #F6F1E7;               /* títulos (creme) */
  --border-1: rgba(255, 255, 255, .2);
  --border-2: rgba(255, 255, 255, .13);
  --wa: #25D366;
  --wa-dark: #1EBE5A;
  --star: #F5C242;

  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;

  --radius: 30px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-h: 82px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--accent); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent-2); }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; color: var(--headings); line-height: 1.18; letter-spacing: -.02em; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.fix { overflow: hidden; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--accent); color: var(--accent-dark);
  padding: 12px 20px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--accent-dark); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Section base (Edigital) ---------- */
.section-padding { padding: 120px 0; position: relative; }
section { position: relative; }

.sub-title {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  color: var(--white); font-size: 14px; font-weight: 500;
  letter-spacing: 2.4px; text-transform: uppercase;
}
.sub-title svg { color: var(--accent); flex: none; }

.section-title { margin: 0 auto 56px; text-align: center; max-width: 720px; }
.section-title--left { text-align: left; margin-left: 0; margin-bottom: 28px; }
.section-title .title {
  font-size: clamp(32px, 4.4vw, 50px); font-weight: 500;
  letter-spacing: -1.5px; line-height: 1.15; margin: 0;
}
.section-title .title span {
  color: var(--accent); font-weight: 400; font-style: italic;
}

/* ---------- Stoke title (outline gigante de fundo) ---------- */
.stoke-title {
  position: absolute; top: 40px; right: 0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, .16);
  color: transparent; font-size: clamp(80px, 14vw, 160px);
  font-weight: 700; line-height: 1; letter-spacing: -4px;
  text-transform: uppercase; white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
}
.stoke-title--right { right: auto; left: 0; }

/* ---------- Botão pill com setas (theme-btn-main) ---------- */
.theme-btn-main {
  display: inline-flex; align-items: center;
  position: relative; border-radius: 999px;
  transition: all .4s ease;
}
.theme-btn-main .theme-btn {
  display: inline-flex; align-items: center; gap: 26px;
  background: var(--accent); color: var(--accent-dark);
  font-weight: 600; font-size: 16px;
  padding: 14px 32px; border-radius: 999px;
  white-space: nowrap; transition: all .4s ease;
}
.theme-btn-main .theme-btn--transparent {
  background: transparent; color: var(--white);
  border: 1px solid var(--border-1);
}
.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  width: 56px; height: 56px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: #10240f;
  border-radius: 50%; font-size: 18px; line-height: 1;
  transition: all .4s ease;
}
.theme-btn-main .theme-btn-arrow-left { position: absolute; left: 0; scale: 0; }
.theme-btn-main:hover .theme-btn-arrow-left { scale: 1; }
.theme-btn-main:hover .theme-btn-arrow-right { scale: 0; }
.theme-btn-main:hover .theme-btn { transform: translateX(56px); background: var(--accent-2); color: var(--accent-dark); }
.theme-btn-main:hover .theme-btn--transparent { background: rgba(255, 255, 255, .07); color: var(--white); }

.theme-btn-main--accent .theme-btn { background: var(--wa); color: #08331A; }
.theme-btn-main--accent:hover .theme-btn { background: var(--wa-dark); color: #06280F; }
.theme-btn-main--block { display: flex; width: 100%; }
.theme-btn-main--block .theme-btn { flex: 1; justify-content: center; }
.theme-btn-main--block:hover .theme-btn { transform: none; }

/* Botão "read more" inline dos cards (main2) */
.theme-btn-main2 { margin-top: 4px; }
.theme-btn-main2 .theme-btn-arrow-left,
.theme-btn-main2 .theme-btn-arrow-right {
  width: 29px; height: 29px; border-radius: 8px;
  background: var(--accent); color: var(--accent-dark);
  font-size: 13px;
}
.theme-btn-main2 .theme-btn-arrow-right { margin-left: 14px; position: static; scale: 1; }
.theme-btn-main2 .theme-btn-arrow-left { position: absolute; scale: 0; }
.theme-btn-main2 .theme-btn {
  background: transparent; color: var(--white);
  padding: 0; font-size: 16px; font-weight: 500;
}
.theme-btn-main2:hover .theme-btn { transform: translateX(43px); color: var(--accent); background: transparent; }

/* ---------- Header ---------- */
.main-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11, 35, 21, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-2);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.main-header.is-scrolled { box-shadow: 0 10px 40px rgba(0, 0, 0, .5); background: rgba(11, 35, 21, .97); }
.header__inner { display: flex; align-items: center; gap: 28px; }
.logo { flex: none; }
.logo img { width: 168px; height: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: block; padding: 9px 16px; border-radius: 999px;
  color: var(--headings); font-weight: 500; font-size: 15.5px;
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--accent); }

/* contato dentro do menu mobile (estilo menu-box do template) */
.nav__contact { display: none; }

.header-btn {
  flex: none; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--wa); color: #08331A;
  font-weight: 700; font-size: 15.5px; line-height: 1;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .3);
  transition: background-color .25s var(--ease), transform .22s var(--ease), color .2s;
}
.header-btn:hover { background: var(--wa-dark); color: #06280F; transform: translateY(-2px); }
.header-btn .icon-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }

.nav-toggle {
  display: none; flex: none; width: 46px; height: 46px;
  background: var(--bg-2); border: 1px solid var(--border-1); border-radius: 12px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 50%; width: 21px; height: 2.5px; background: var(--headings);
  border-radius: 2px; transform: translateX(-50%); transition: transform .28s var(--ease), opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ---------- Hero (Edigital hero-1) ---------- */
.hero-section {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 120px;
  color: var(--white);
  z-index: 1;
}
.hero-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 48px; align-items: end;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(121.17% 77.3% at 65.73% 107.21%, rgba(4, 16, 9, .96) 0%, rgba(4, 16, 9, .3) 100%),
    linear-gradient(75deg, rgba(7, 26, 16, .96) 0%, rgba(7, 26, 16, .78) 46%, rgba(7, 26, 16, .38) 100%);
}
.hero__title {
  font-size: clamp(58px, 9.5vw, 130px);
  font-weight: 500; line-height: .95; letter-spacing: -3px;
  text-transform: uppercase; color: var(--headings); margin: 0 0 4px;
}
.hero__title-2 {
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 500; line-height: 1.05; letter-spacing: -2.4px;
  text-transform: uppercase; margin: 0 0 40px;
  background: linear-gradient(90deg, var(--accent) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex; align-items: center; flex-wrap: wrap; gap: 22px;
}
.hero__title-2 .text-1 {
  display: inline-block;
  color: var(--accent);
  font-size: clamp(24px, 3.4vw, 40px); font-weight: 500;
  letter-spacing: -.8px; text-transform: uppercase;
  padding: 8px 30px; border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--border-1);
  backdrop-filter: blur(20px);
  -webkit-text-fill-color: var(--accent);
  background-clip: initial; -webkit-background-clip: initial;
  position: relative;
}
.hero__text { max-width: 480px; }
.hero__text p { font-size: clamp(16px, 2vw, 18.5px); color: var(--text); margin-bottom: 32px; }
.hero__text .theme-btn-main { margin-right: 16px; margin-bottom: 14px; }

/* card de info flutuante (hero-info do template) */
.hero__info {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.hero__info-top { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border-2); }
.hero__info-num {
  font-size: 52px; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, var(--accent) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__info-stars .star { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.hero__info-stars p { margin: 2px 0 0; font-size: 13px; color: var(--text); }
.hero__info-list { padding-top: 16px; display: grid; gap: 10px; }
.hero__info-list li { position: relative; padding-left: 24px; font-size: 14.5px; font-weight: 500; color: var(--headings); }
.hero__info-list li::before { content: '✦'; position: absolute; left: 2px; color: var(--accent); font-size: 12px; }

/* ---------- Marquee (Edigital marquee-two) ---------- */
.marquee-section {
  background: var(--accent);
  padding: 26px 0;
  position: relative; z-index: 9;
  overflow: clip;
}
.marquee-two {
  display: flex; overflow: hidden;
  --duration: 30s; --gap: 0px; gap: var(--gap);
  user-select: none;
}
.marquee-group {
  flex-shrink: 0; display: flex; align-items: center;
  justify-content: space-around; gap: var(--gap);
  min-width: 100%;
  animation: marquee-scroll var(--duration) linear infinite;
}
.marquee-group .text {
  font-size: clamp(20px, 3vw, 34px); line-height: 1.2;
  color: var(--accent-dark); font-weight: 600;
  margin: 0 30px; white-space: nowrap;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - var(--gap))); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-group { animation-play-state: paused; }
  html { scroll-behavior: auto; }
}

/* ---------- Sobre (Edigital about + feature list) ---------- */
.about-section { z-index: 1; }
.about__grid {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 70px; align-items: center; position: relative; z-index: 1;
}
.about__media { position: relative; }
.about__thumb {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-1);
  aspect-ratio: 4 / 4.4;
}
.about__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* círculo com texto girando + número (circle-box do template) */
.about__circle {
  position: absolute; right: -30px; bottom: -30px;
  width: 250px; height: 250px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 50%;
}
.circle-text { position: absolute; inset: 0; text-transform: uppercase; }
.circle-text svg {
  width: 100%; height: 100%;
  transform: rotate(135deg);
  animation: rotate 30s linear infinite;
}
@keyframes rotate { to { transform: rotate(495deg); } }
.circle-text textPath { fill: var(--headings); font-size: 15px; font-weight: 600; letter-spacing: 4.5px; }
.about__circle .experience { text-align: center; }
.about__circle .experience .count-text,
.experience .count-text {
  font-size: 64px; font-weight: 700; line-height: 1;
  background: linear-gradient(90deg, var(--accent) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text { color: var(--text); }
.about-text strong { color: var(--accent); font-weight: 600; }

/* lista de features (feature-list-items do template) */
.about__features { display: grid; gap: 26px; padding: 30px 0 36px; }
.about__features li {
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 22px;
}
.about__features li:last-child { border-bottom: 0; padding-bottom: 0; }
.about__features .title { font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.about__features .list-item { display: flex; align-items: center; gap: 18px; }
.about__features .text { font-size: 14.5px; color: var(--text); }
.about__features .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- Produtos (service slide do template) ---------- */
.service-wrapper { background: var(--bg-2); }
.service-wrapper .container { position: relative; z-index: 1; }
.service-slide {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: none;
}
.service-slide::-webkit-scrollbar { display: none; }
.service-block {
  flex: 0 0 clamp(280px, 30vw, 360px);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background-color .3s ease, transform .3s var(--ease);
}
.service-block:hover { background: var(--bg-3); transform: translateY(-6px); }
.service-block .image { aspect-ratio: 4 / 3; overflow: hidden; }
.service-block .image img { width: 100%; height: 100%; object-fit: cover; }
.service-block .content { padding: 26px 28px 30px; }
.service-block .tag {
  display: inline-block; margin-bottom: 14px;
  padding: 5px 16px; border-radius: 999px;
  background: var(--accent); color: var(--accent-dark);
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
}
.service-block .title { font-size: 21px; font-weight: 500; margin-bottom: 8px; }
.service-block .text { font-size: 15px; color: var(--text); margin-bottom: 18px; }
.service-block .text strong { color: var(--accent); font-weight: 600; }

/* navegação do slider */
.service-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 8px; }
.array-prev, .array-next {
  border: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-2); color: var(--accent);
  font-size: 18px; font-weight: 600;
  height: 50px; width: 50px;
  transition: all .25s ease;
}
.array-prev:hover, .array-next:hover { background: var(--accent); color: var(--accent-dark); }
.swiper-dot { display: flex; align-items: center; }
.swiper-dot .dot { width: 60px; height: 3px; border-radius: 3px; background: var(--border-1); }

/* chips */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.chips li {
  padding: 11px 22px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--border-1);
  color: var(--headings); font-size: 14.5px; font-weight: 500;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.chips li:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Visão VIP (work-block do template) ---------- */
.vip-section { background: var(--bg); z-index: 1; }
.vip__lead { color: var(--text); font-size: 17.5px; max-width: 640px; margin: 0 auto; }
.vip__grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px; align-items: center; position: relative; z-index: 1;
}
.vip__media { position: relative; }
.vip__media > img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border-1);
  aspect-ratio: 4 / 4.4; object-fit: cover;
  box-shadow: var(--shadow);
}
.vip__card {
  position: absolute; left: -24px; bottom: -24px; max-width: 300px;
  display: flex; gap: 14px; align-items: center;
  background: var(--bg-2); color: var(--text);
  padding: 22px 24px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-1);
  box-shadow: var(--shadow);
}
.vip__card p { margin: 0; font-size: 14.5px; line-height: 1.45; }
.vip__card strong { display: block; color: var(--headings); font-size: 15px; margin-bottom: 2px; }
.vip__card img { flex: none; }

.vip__steps { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 46px 40px; margin-bottom: 26px; }
.work-block { position: relative; text-align: center; z-index: 1; }
.work-block .step-btn {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--bg-2); color: var(--accent);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  padding: 6px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all .25s ease;
}
.work-block .inner-box {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 44px 26px 34px;
  position: relative;
  transition: all .25s ease;
}
.work-block .icon svg { width: 54px; height: 54px; fill: var(--accent); }
.work-block .title { font-size: 19px; font-weight: 500; margin: 14px 0 8px; }
.work-block .text { font-size: 14.5px; color: var(--text); margin: 0; }
.work-block:hover .step-btn { background: var(--accent); color: var(--accent-dark); border-color: var(--accent); }
.work-block:hover .inner-box { background: var(--bg-3); transform: translateY(-4px); }

/* ---------- Diferenciais (award do template) ---------- */
.award-section { background: var(--bg-2); }
.award__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 64px; align-items: center;
}
.award__cards { display: grid; gap: 22px; }
.award-block {
  position: relative;
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 0 44px 36px;
  background: var(--bg);
  transition: background-color .25s ease;
}
.award-block .head { display: flex; align-items: flex-start; justify-content: space-between; }
.award-block .head .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  border-radius: 0 0 44px 44px;
  background: var(--accent); color: var(--accent-dark);
  font-size: 30px; font-weight: 700;
  writing-mode: sideways-lr;
  margin-left: -18px;
}
.award-block .title { font-size: 24px; font-weight: 500; padding-top: 22px; line-height: 1.3; }
.award-block .bottom { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 26px; }
.award-block .line { position: relative; width: 100%; border-top: 1px solid var(--border-1); }
.award-block .line::after {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  transform: translateY(-50%); background: var(--accent);
}
.award-block .year { color: var(--white); font-size: 15px; font-weight: 500; margin: 0; white-space: nowrap; }
.award-block:hover { background: var(--bg-3); }

.award__text { color: var(--text); }
.experience--big { padding: 18px 0 30px; }
.experience--big .count-text { font-size: 90px; }
.experience--big .text-1 { color: var(--headings); font-size: 16.5px; font-weight: 500; margin: 6px 0 26px; }

/* ---------- Depoimentos (testimonial do template) ---------- */
.testimonial-section { background: var(--bg); z-index: 1; }
.testi__grid {
  display: grid; grid-template-columns: minmax(0, .55fr) minmax(0, 1.45fr);
  gap: 64px; align-items: center;
}
.testi__left { display: flex; justify-content: center; }
.circle-box {
  position: relative; width: 290px; height: 290px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 50%;
}
.circle-box .circle-text { position: absolute; inset: 0; }
.circle-box .icon { font-size: 64px; color: var(--accent); line-height: 1; }

.testimonial-block {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 34px 38px;
  margin-bottom: 22px;
}
.testimonial-block .text { font-size: 17px; color: var(--headings); margin-bottom: 24px; }
.testimonial-block .infu { display: flex; align-items: center; gap: 18px; }
.testimonial-block .image {
  width: 74px; height: 74px; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--accent);
}
.testimonial-block .image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 12%;
}
.testimonial-block .name-info .name { margin: 0 0 2px; font-size: 17px; font-weight: 600; }
.testimonial-block .name-info span { font-size: 14px; color: var(--text); }
.array-button { display: flex; align-items: center; gap: 18px; }

.testi__invite { text-align: center; font-size: 16px; color: var(--text); margin: 46px 0 0; }
.testi__invite a { font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

/* Google reviews (bloco opcional — pronto para ativar) */
.reviews-google { margin-top: 46px; padding: 32px; background: var(--bg-2); border: 1px solid var(--border-1); border-radius: var(--radius); }
.reviews-google__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.reviews-google__head h3 { margin: 0; font-size: 20px; }
.reviews-google__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 24px; }
.g-review { padding: 20px; border: 1px solid var(--border-2); border-radius: var(--radius-sm); }
.g-review__author { font-weight: 600; color: var(--headings); font-size: 15px; margin-bottom: 4px; }
.g-review__stars { color: var(--star); letter-spacing: 2px; margin-bottom: 8px; }
.g-review__text { font-size: 15px; color: var(--text); margin: 0; }

/* ---------- Localização ---------- */
.local-section { background: var(--bg-2); }
.local__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 48px; align-items: stretch; position: relative; z-index: 1;
}
.local__map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-1);
  min-height: 460px; background: var(--panel);
}
.local__info { display: flex; flex-direction: column; gap: 30px; }
.local__item h3 {
  margin: 0 0 10px; font-size: 13px; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--accent);
}
.local__item p { margin: 0 0 8px; color: var(--headings); font-size: 16.5px; }
.local__link { font-weight: 600; }
.hours td { padding: 8px 0; font-size: 15.5px; color: var(--text); border-bottom: 1px dashed var(--border-2); }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--headings); }
.hours--closed td { border-bottom: 0; }

/* ---------- Footer (Edigital footer) ---------- */
.footer-section {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  position: relative; z-index: 9;
}
.footer-top-wrapper {
  padding: 90px 0 70px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer-logo img { width: 200px; }
.lets-talk-content .title {
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 500; line-height: 1.05; letter-spacing: -2.2px;
  color: var(--headings); margin: 0;
}
.lets-talk-content .title span { display: block; color: var(--accent); font-weight: 400; font-size: .45em; margin-top: 10px; letter-spacing: -.5px; }
.lets-talk-content .arrow-icon {
  display: inline-grid; place-items: center;
  width: 74px; height: 74px; margin-right: 22px;
  border-radius: 50%;
  background: var(--bg-2);
  font-size: 26px; color: var(--accent);
  border: 2px solid var(--accent);
  vertical-align: middle;
  transition: all .3s ease;
}
.lets-talk-content .arrow-icon:hover { background: var(--accent); color: var(--accent-dark); transform: rotate(45deg); }

.footer-widget-wrapper { padding-bottom: 70px; border-bottom: 1px solid var(--border-2); }
.footer__cols {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 54px; align-items: start;
}
.footer__contact p { margin-bottom: 6px; }
.footer__contact p a { color: var(--headings); font-size: 16px; }
.call-title { margin: 0 0 20px; font-size: 24px; font-weight: 500; color: var(--headings); }
.social-icon { display: flex; gap: 12px; margin-bottom: 22px; }
.social-icon a {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border-1);
  transition: all .25s ease;
}
.social-icon a svg { width: 20px; height: 20px; }
.social-icon a:hover { background: var(--accent); border-color: var(--accent); }
.social-icon a:hover svg { fill: var(--accent-dark); }
.get-title { margin: 0; font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5; }
.widget-title { margin: 0 0 22px; font-size: 18px; font-weight: 500; color: var(--white); }
.user-links { display: grid; gap: 12px; }
.user-links a { color: var(--text); font-size: 15.5px; }
.user-links a:hover { color: var(--accent); padding-left: 6px; }

.footer-bottom { padding: 26px 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: 14px; color: var(--text); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-radius: 999px;
  background: var(--wa); color: #08331A;
  font-weight: 700; font-size: 15.5px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.wa-float svg { width: 26px; height: 26px; fill: currentColor; flex: none; }
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px) scale(1.02); color: #06280F; }
.wa-float__label { white-space: nowrap; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.22); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .circle-text svg { animation: none; }
  .theme-btn-main, .theme-btn-main * { transition: none; }
}

/* =========================================================
   Responsivo (breakpoints espelhados do template)
   ========================================================= */
@media (max-width: 1199px) {
  .section-padding { padding: 100px 0; }
  .stoke-title { display: none; }

  .hero-section .container { grid-template-columns: 1fr; align-items: start; }
  .hero__info { max-width: 420px; margin-bottom: 0; }

  .about__grid, .vip__grid, .award__grid, .local__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__media { max-width: 520px; }
  .about__circle { right: -14px; bottom: -30px; width: 220px; height: 220px; }
  .vip__media { max-width: 540px; margin: 0 auto; }
  .award__right { max-width: 560px; }
  .testi__grid { grid-template-columns: 1fr; gap: 40px; }
  .testi__left { justify-content: flex-start; }
  .circle-box { width: 250px; height: 250px; }
}

@media (max-width: 991px) {
  :root { --header-h: 74px; }

  /* menu mobile estilo menu-box do template */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto;
    background: var(--bg-2);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    margin: 0; padding: 10px 24px 34px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
    transform: translateY(-130%); opacity: 0; visibility: hidden;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transition: transform .34s var(--ease), opacity .28s var(--ease), visibility .28s;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 16px 10px; font-size: 17px; border-radius: 10px; }
  .nav__link:hover, .nav__link.is-active { background: var(--bg-3); }

  .nav__contact { display: grid; gap: 18px; margin-top: 22px; padding-top: 24px; border-top: 1px solid var(--border-2); }
  .nav__contact-label { display: block; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
  .nav__contact-item a, .nav__contact-item span { color: var(--headings); font-size: 15.5px; }

  .header__inner { gap: 16px; }
  .header-btn { margin-left: auto; padding: 12px 20px; font-size: 14.5px; }
  .nav-toggle { display: block; order: 3; }

  .vip__steps { grid-template-columns: 1fr; gap: 56px; }
  .work-block .step-btn { top: -16px; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer-top-wrapper { padding: 70px 0 50px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 80px 0; }

  .hero-section { padding: calc(var(--header-h) + 48px) 0 90px; }
  .hero__title-2 { gap: 14px; }
  .hero__info { margin-top: 8px; }

  .about__circle { width: 190px; height: 190px; right: 0; bottom: -22px; }
  .about__circle .experience .count-text { font-size: 46px; }
  .circle-text textPath { font-size: 13px; letter-spacing: 3.4px; }

  .award-block { padding: 0 26px 28px; }
  .award-block .head .num { width: 64px; height: 64px; font-size: 22px; border-radius: 0 0 32px 32px; }
  .award-block .title { font-size: 20px; }
  .experience--big .count-text { font-size: 64px; }

  .testimonial-block { padding: 26px 24px; }

  .local__map { min-height: 340px; }
  .footer__cols { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 575px) {
  body { font-size: 16.5px; }
  .container { padding: 0 20px; }

  .logo img { width: 138px; }
  .header-btn span:not(.icon-wa) { display: none; }
  .header-btn { padding: 12px 14px; border-radius: 12px; }

  .hero__title { font-size: clamp(44px, 13.5vw, 64px); }
  .hero__title-2 { font-size: clamp(32px, 10vw, 48px); }
  .hero__title-2 .text-1 { font-size: 16px; padding: 6px 18px; }
  .hero__text .theme-btn-main { width: 100%; margin-right: 0; }
  .hero__text .theme-btn-main .theme-btn { width: 100%; justify-content: center; }
  .hero__info { padding: 20px 22px; }

  .service-block { flex: 0 0 86%; }
  .service-block .content { padding: 22px 22px 26px; }

  .work-block .inner-box { padding: 38px 22px 28px; }
  .work-block .icon svg { width: 44px; height: 44px; }

  .vip__card { position: static; max-width: none; margin-top: 16px; }

  .lets-talk-content .arrow-icon { display: none; }

  .wa-float { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); padding: 15px; }
  .wa-float__label { display: none; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ---------- Impressão ---------- */
@media print {
  .main-header, .wa-float, .marquee-section, .hero__text, .theme-btn-main, .service-nav, .array-button { display: none !important; }
  body { background: #fff; color: #000; }
  .hero-section { color: #000; padding: 20px 0; }
  .hero__bg, .hero__bg::after { display: none; }
  h1, h2, h3, h4, h5, .section-title .title, .hero__title, .hero__title-2 { color: #000; -webkit-text-fill-color: #000; background: none; }
  .stoke-title { display: none; }
  .section-padding { padding: 24px 0; break-inside: avoid; }
  body { font-size: 12pt; }
}