/* ============================================================
   TECH & SECURITY — Site Institucional
   Estilo: editorial monocromático (preto / branco / cinza)
   ============================================================ */

:root {
  --blue: #202020;
  --blue-dark: #000000;
  --blue-light: #EFEFEF;
  --mint: #202020;
  --mint-dark: #000000;
  --mint-light: #EFEFEF;
  --white: #FFFFFF;
  --gray: #E9E9E9;
  --gray-200: #E2E2E0;
  --text: #202020;
  --text-soft: #4A4A4A;
  --text-muted: #6D6D6D;
  --radius: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, .10);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, .14);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 88px 0; }
.section--gray { background: var(--gray); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head h2, .page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-head p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
}

.gradient-text {
  background: linear-gradient(92deg, #C7A23C 0%, #A5832A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(28, 37, 48, .45);
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 14px 28px -6px rgba(28, 37, 48, .5); }

.btn--mint {
  background: var(--mint);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(199, 162, 60, .45);
}
.btn--mint:hover { background: var(--mint-dark); transform: translateY(-3px); box-shadow: 0 14px 28px -6px rgba(199, 162, 60, .5); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover { background: var(--blue-light); transform: translateY(-3px); }

.btn--lg { padding: 17px 36px; font-size: 17px; }
.btn--sm { padding: 11px 22px; font-size: 14px; border-radius: 10px; }
.btn--block { width: 100%; }

/* ============ HEADER / NAVBAR ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img { height: 52px; width: auto; }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: .02em;
}
.nav__logo-text small {
  display: block;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--blue);
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 0;
  transition: color .2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  transition: width .3s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

/* Dropdown Menu de Serviços */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__dropdown-toggle svg {
  transition: transform 0.25s ease;
}

.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown.is-open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 10px;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav__dropdown-item:hover {
  background: #F4F5F7;
  color: #C7A23C;
  transform: translateX(4px);
}

.nav__dropdown-item span.icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #F0F2F5;
  border-radius: 8px;
}

.nav__dropdown-item small {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
}

.nav__cta { display: flex; align-items: center; gap: 12px; }


.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO (HOME) ============ */
.hero {
  position: relative;
  padding: 170px 0 90px;
  background:
    radial-gradient(820px 480px at 85% -12%, rgba(28, 37, 48, .10), transparent 62%),
    radial-gradient(700px 420px at -12% 15%, rgba(28, 37, 48, .05), transparent 60%),
    var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.hero__badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 162, 60, .5); }
  55% { box-shadow: 0 0 0 7px rgba(199, 162, 60, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.hero__sub {
  margin: 22px 0 34px;
  font-size: 18px;
  color: var(--text-soft);
  max-width: 540px;
}
.hero__sub strong { color: var(--text); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
}
.hero__proof-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-soft); }
.hero__proof-item svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  animation: float 5.5s ease-in-out infinite;
}
.hero__card img { border-radius: 12px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__mini {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
}
.hero__mini small { display: block; font-weight: 500; color: var(--text-muted); font-size: 12px; }
.hero__mini .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__mini .icon svg { width: 22px; height: 22px; }
.hero__mini--ads { top: -24px; right: -14px; animation: float 4.5s ease-in-out infinite .4s; }
.hero__mini--ads .icon { background: var(--blue-light); color: var(--blue); }
.hero__mini--zap { bottom: -22px; left: -18px; animation: float 5s ease-in-out infinite .9s; }
.hero__mini--zap .icon { background: var(--mint-light); color: var(--mint-dark); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--gray);
  border-block: 1px solid var(--gray-200);
  padding: 20px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee__item svg { width: 18px; height: 18px; color: var(--blue); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 34px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--blue);
}
.stat__num sup { font-size: .55em; color: var(--mint); }
.stat p { color: var(--text-muted); font-size: 14.5px; margin-top: 4px; }

/* ============ CARDS GENÉRICOS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  opacity: 0;
  transition: opacity .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 20px;
  transition: transform .3s;
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon svg { width: 28px; height: 28px; }
.card__icon--mint { background: var(--mint-light); color: var(--mint-dark); }

.card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 15px; }
.card ul { margin-top: 14px; display: grid; gap: 8px; }
.card ul li {
  display: flex; gap: 9px;
  font-size: 14.5px;
  color: var(--text-soft);
}
.card ul li svg { width: 17px; height: 17px; color: var(--mint); flex-shrink: 0; margin-top: 3px; }

/* ============ SEÇÃO DUPLA SITE + ADS ============ */
.duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: stretch;
}
.duo__panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 38px 32px;
  transition: transform .3s, box-shadow .3s;
}
.duo__panel:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.duo__panel h3 { font-family: var(--font-display); font-size: 23px; margin: 16px 0 10px; }
.duo__panel p { color: var(--text-soft); font-size: 15px; }
.duo__panel ul { margin-top: 18px; display: grid; gap: 10px; }
.duo__panel ul li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.duo__panel ul li svg { width: 18px; height: 18px; color: var(--mint); flex-shrink: 0; margin-top: 2px; }

.duo__tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.duo__tag--blue { background: var(--blue-light); color: var(--blue); }
.duo__tag--mint { background: var(--mint-light); color: var(--mint-dark); }

.duo__plus {
  align-self: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  box-shadow: 0 12px 24px -8px rgba(28, 37, 48, .5);
  animation: pulse-plus 2.4s infinite;
}
@keyframes pulse-plus {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.duo__result {
  margin-top: 30px;
  text-align: center;
  background: #131B25;
  color: #fff;
  border-radius: 14px;
  padding: 20px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.duo__result strong { color: #E5C97E; }

/* ============ PASSO A PASSO ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 16px;
}
.step:nth-child(even) .step__num { background: var(--mint); }
.step h3 { font-family: var(--font-display); font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-soft); }

/* ============ PAGE HERO (internas) ============ */
.page-hero {
  padding: 160px 0 70px;
  background:
    radial-gradient(600px 340px at 90% -10%, rgba(199, 162, 60, .1), transparent 60%),
    radial-gradient(700px 420px at 0% 0%, rgba(28, 37, 48, .1), transparent 60%),
    var(--gray);
  text-align: center;
}
.page-hero p {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 17.5px;
}
.page-hero .breadcrumb {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.page-hero .breadcrumb a { color: var(--blue); }

/* ============ ABAS (SERVIÇOS) ============ */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-soft);
  cursor: pointer;
  transition: all .25s;
}
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(28, 37, 48, .45);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade-up .5s ease both; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 46px;
  box-shadow: var(--shadow-sm);
}
.service-detail h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 14px; }
.service-detail > div > p { color: var(--text-soft); }
.service-detail ul { margin-top: 20px; display: grid; gap: 11px; }
.service-detail ul li { display: flex; gap: 10px; font-size: 15px; color: var(--text-soft); }
.service-detail ul li svg { width: 19px; height: 19px; color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.service-detail .btn { margin-top: 26px; }

.service-detail__visual {
  border-radius: 16px;
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-light), var(--mint-light));
  position: relative;
  overflow: hidden;
}
.service-detail__visual svg { width: 130px; height: 130px; color: var(--blue); opacity: .85; }
.service-detail__visual::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 2px dashed rgba(28, 37, 48, .35);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ PREÇOS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  padding: 38px 32px;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card--featured {
  border: 2px solid var(--mint);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-8px); }

.price-card__flag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(92deg, var(--blue), var(--mint));
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-family: var(--font-display); font-size: 21px; }
.price-card__desc { font-size: 14px; color: var(--text-muted); margin-top: 6px; min-height: 42px; }

.price-card__price { margin: 20px 0 6px; }
.price-card__price .currency { font-size: 19px; font-weight: 600; color: var(--text-soft); vertical-align: top; }
.price-card__price .value {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.price-card__price .period { color: var(--text-muted); font-size: 14.5px; }
.price-card__old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-card__fee { font-size: 13.5px; color: var(--blue); font-weight: 600; margin-bottom: 4px; }

.price-card ul { margin: 22px 0 28px; display: grid; gap: 11px; flex: 1; }
.price-card ul li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.price-card ul li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.price-card ul li.is-off { opacity: .45; }
.price-card ul li.is-off svg { color: var(--text-muted); }

.custom-quote {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: linear-gradient(115deg, #10161E 0%, #252E3A 55%, #0F151D 125%);
  border-radius: 22px;
  padding: 46px 50px;
  color: #fff;
}
.custom-quote h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; }
.custom-quote p { opacity: .92; max-width: 560px; }
.custom-quote .btn { background: #fff; color: var(--blue); }
.custom-quote .btn:hover { background: var(--gray); }

.guarantee-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-top: 46px;
}
.guarantee-row span {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--text-soft);
}
.guarantee-row svg { width: 20px; height: 20px; color: var(--mint); }

/* ============ SOBRE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid h2 { font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 18px; letter-spacing: -.02em; }
.about-grid p { color: var(--text-soft); margin-bottom: 14px; }
.about-grid p strong { color: var(--text); }

.world-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.region {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 14px;
  transition: transform .3s, box-shadow .3s;
}
.region:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.region .flag { font-size: 38px; line-height: 1; }
.region h4 { font-family: var(--font-display); font-size: 15.5px; margin: 12px 0 4px; }
.region p { font-size: 13px; color: var(--text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .card__icon { margin: 0 auto 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-soft); }

.langs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.lang-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14.5px; font-weight: 600;
  color: var(--text-soft);
  transition: transform .25s, border-color .25s;
}
.lang-chip:hover { transform: translateY(-3px); border-color: var(--blue); }

/* ============ CONTATO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 6px; }
.contact-form > p { color: var(--text-soft); font-size: 15px; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 11px;
  background: var(--gray);
  color: var(--text);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(28, 37, 48, .12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; animation: fade-up .5s ease both; }
.form-success .icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--mint-dark);
  display: grid; place-items: center;
}
.form-success .icon svg { width: 38px; height: 38px; }
.form-success h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--text-soft); }

.contact-side { display: grid; gap: 20px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--blue-light);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card .icon--mint { background: var(--mint-light); color: var(--mint-dark); }
.contact-card .icon svg { width: 25px; height: 25px; }
.contact-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.contact-card p { font-size: 14.5px; color: var(--text-soft); }

/* ============ FAQ ============ */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq__item.is-open { box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none; border: none;
  font-family: var(--font);
  font-size: 16px; font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--text);
}
.faq__q svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform .3s; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a p { padding: 0 24px 22px; color: var(--text-soft); font-size: 15px; }

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative;
  text-align: center;
  background: linear-gradient(120deg, #10161E 0%, #1B2430 58%, #0F151D 135%);
  border-radius: 26px;
  padding: 72px 30px;
  overflow: hidden;
}
.cta-final h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); letter-spacing: -.02em; color: #fff; }
.cta-final h2 .gradient-text { background: none; -webkit-text-fill-color: #E5C97E; }
.cta-final p { margin: 16px auto 32px; max-width: 560px; color: rgba(255, 255, 255, .82); font-size: 17px; }
.cta-final .btn--primary { background: #fff; color: var(--blue); box-shadow: 0 12px 26px -8px rgba(0, 0, 0, .4); }
.cta-final .btn--primary:hover { background: var(--gray); transform: translateY(-3px); }
.cta-final .hero__ctas { justify-content: center; }

/* ============ FOOTER ============ */
.footer {
  background: var(--gray);
  border-top: 1px solid var(--gray-200);
  padding: 64px 0 0;
  margin-top: 88px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand img { height: 74px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 14.5px; color: var(--text-soft); max-width: 300px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: 14.5px; color: var(--text-soft); transition: color .2s; }
.footer__links a:hover { color: var(--blue); }
.footer__contact { display: grid; gap: 11px; font-size: 14.5px; color: var(--text-soft); }
.footer__contact span { display: flex; gap: 9px; align-items: center; }
.footer__contact svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid var(--gray-200);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============ WHATSAPP FLUTUANTE ============ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1100;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .6);
  transition: transform .25s;
  animation: wa-in .6s .8s cubic-bezier(.2, 1.4, .4, 1) both;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: wa-ring 2s infinite;
}
@keyframes wa-ring {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes wa-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.wa-float .wa-tip {
  position: absolute;
  right: 72px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 9px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  transform: translateX(8px);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ============ CHATBOT IA ============ */
.chatbot {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 1100;
}
.chatbot__btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #39434F);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -6px rgba(28, 37, 48, .55);
  transition: transform .25s;
  animation: wa-in .6s 1s cubic-bezier(.2, 1.4, .4, 1) both;
  position: relative;
}
.chatbot__btn:hover { transform: scale(1.1); }
.chatbot__btn svg { width: 30px; height: 30px; }
.chatbot__btn .badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--mint);
  border: 2.5px solid #fff;
}

.chatbot__panel {
  position: absolute;
  left: 0; bottom: 74px;
  width: 340px;
  max-width: calc(100vw - 44px);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: 0 24px 60px -12px rgba(15, 23, 42, .28);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.chatbot.is-open .chatbot__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot__head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(92deg, var(--blue), #39434F);
  color: #fff;
  padding: 16px 18px;
}
.chatbot__head .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.chatbot__head .avatar svg { width: 24px; height: 24px; }
.chatbot__head strong { font-size: 15px; display: block; }
.chatbot__head small { font-size: 12px; opacity: .85; display: flex; align-items: center; gap: 5px; }
.chatbot__head small::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E5C97E;
}
.chatbot__close {
  margin-left: auto;
  background: none; border: none;
  color: #fff; cursor: pointer;
  opacity: .8;
  padding: 6px;
}
.chatbot__close:hover { opacity: 1; }
.chatbot__close svg { width: 18px; height: 18px; }

.chatbot__body {
  height: 300px;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--gray);
}
.chat-msg {
  max-width: 85%;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.5;
  animation: fade-up .35s ease both;
}
.chat-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-bottom-left-radius: 5px;
  color: var(--text);
}
.chat-msg--user {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 15px;
  border-bottom-left-radius: 5px;
}
.chat-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing 1.1s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .18s; }
.chat-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.chatbot__quick button {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.chatbot__quick button:hover { background: #E4E7EC; transform: translateY(-2px); }

.chatbot__form {
  display: flex;
  gap: 9px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.chatbot__form input {
  flex: 1;
  font-family: var(--font);
  font-size: 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--gray);
}
.chatbot__form input:focus { outline: none; border-color: var(--blue); background: #fff; }
.chatbot__form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.chatbot__form button:hover { background: var(--blue-dark); transform: scale(1.06); }
.chatbot__form button svg { width: 18px; height: 18px; }

/* ============ ANIMAÇÕES DE SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: translateX(0); }
.reveal--zoom { transform: scale(.9); }
.reveal--zoom.is-visible { transform: scale(1); }

[data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1); }
[data-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: .15s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: .25s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: .35s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: .45s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: .55s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__anim { opacity: 0; animation: fade-up .8s ease forwards; }
.hero__anim--1 { animation-delay: .1s; }
.hero__anim--2 { animation-delay: .25s; }
.hero__anim--3 { animation-delay: .4s; }
.hero__anim--4 { animation-delay: .55s; }
.hero__anim--5 { animation-delay: .7s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, [data-stagger] > * { opacity: 1; transform: none; }
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 70px; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .cards-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-8px); }
  .steps, .stats, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; padding: 34px; }
  .service-detail__visual { min-height: 240px; order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .duo { grid-template-columns: 1fr; }
  .duo__plus { margin: 0 auto; transform: rotate(90deg); }
  @keyframes pulse-plus {
    0%, 100% { transform: rotate(90deg) scale(1); }
    50% { transform: rotate(90deg) scale(1.1); }
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__toggle { display: flex; }
  .nav__cta .btn { display: none; }
  .nav__menu {
    position: fixed;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 12px 20px 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--gray); }
  .nav__link::after { display: none; }
  .nav__dropdown { flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--gray); }
  .nav__dropdown .nav__link { border-bottom: none; width: 100%; justify-content: space-between; }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: #F8F9FA;
    padding: 6px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__dropdown.is-open .nav__dropdown-menu {
    display: flex;
  }
  .nav__dropdown-item {
    padding: 8px 10px;
    font-size: 13.5px;
  }
  .nav__menu .btn { margin-top: 16px; }


  .hero { padding: 140px 0 70px; }
  .hero__mini--ads { right: 0; }
  .hero__mini--zap { left: 0; }
  .cards-grid, .pricing-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .custom-quote { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .custom-quote p { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .world-map { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .chatbot__panel { width: calc(100vw - 44px); }
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .chatbot { left: 16px; bottom: 16px; }
  .chatbot__btn { width: 56px; height: 56px; }
}

@media (max-width: 480px) {
  .steps, .stats, .values-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .btn--lg { padding: 15px 24px; font-size: 15.5px; }
}

/* ============================================================
   CLUSTER DE ÍCONES (estilo Refero) — página Serviços
   ============================================================ */
.cluster { padding: 10px 0 0; }

.cluster__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
}

.app-tile {
  width: 66px; height: 66px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  font-size: 29px;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: var(--shadow-md);
  cursor: default;
  animation: float 5s ease-in-out infinite;
  transition: transform .3s ease;
  position: relative;
}
.app-tile:hover { animation-play-state: paused; transform: scale(1.18); z-index: 2; }

.app-tile--lg { width: 86px; height: 86px; font-size: 38px; border-radius: 24px; }
.app-tile--sm { width: 52px; height: 52px; font-size: 22px; border-radius: 15px; }

/* variações de cor pastel */
.g1 { background: #EEF0F3; } .g2 { background: #F8F2DF; }
.g3 { background: #FEF3C7; } .g4 { background: #FCE7F3; }
.g5 { background: #EDE9FE; } .g6 { background: #FFEDD5; }
.g7 { background: #E0F2FE; } .g8 { background: #F1F5F9; }
.g9 { background: #ECFCCB; } .g10 { background: #CFFAFE; }

/* delays/durações variados para flutuação natural */
.cluster__row .app-tile:nth-child(2n) { animation-duration: 5.8s; animation-delay: .5s; }
.cluster__row .app-tile:nth-child(3n) { animation-duration: 4.6s; animation-delay: 1s; }
.cluster__row .app-tile:nth-child(4n) { animation-duration: 6.4s; animation-delay: .3s; }
.cluster__row .app-tile:nth-child(5n) { animation-duration: 5.2s; animation-delay: 1.4s; }

.cluster__head { text-align: center; max-width: 640px; margin: 0 auto; }
.cluster__head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.cluster__head p { margin-top: 14px; color: var(--text-soft); font-size: 16.5px; }

.app-tile .tile-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--text);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font);
  padding: 5px 11px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.app-tile:hover .tile-tip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   SITE PREVIEWS — mockups de navegador com rolagem animada
   ============================================================ */
.previews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.site-preview {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.site-preview:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.site-preview__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--gray);
  border-bottom: 1px solid var(--gray-200);
}
.site-preview__bar i { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.site-preview__bar i:nth-child(1) { background: #F87171; }
.site-preview__bar i:nth-child(2) { background: #FBBF24; }
.site-preview__bar i:nth-child(3) { background: #E5C97E; }
.site-preview__bar em {
  flex: 1;
  margin-left: 8px;
  font-size: 11px;
  font-style: normal;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 4px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-preview__screen { height: 250px; overflow: hidden; position: relative; }
.site-preview__screen::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .85));
  pointer-events: none;
}

/* mini-site que rola sozinho */
.mini-site {
  --t1: #1C2530; --t2: #C7A23C; --soft: #F4F5F7;
  background: var(--soft);
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  animation: site-scroll 13s ease-in-out infinite;
}
.site-preview:hover .mini-site { animation-play-state: paused; }

.site-preview:nth-child(2) .mini-site { animation-duration: 15s; animation-delay: .8s; }
.site-preview:nth-child(3) .mini-site { animation-duration: 12s; animation-delay: 1.6s; }

@keyframes site-scroll {
  0%, 14% { transform: translateY(0); }
  46%, 58% { transform: translateY(calc(-100% + 250px)); }
  92%, 100% { transform: translateY(0); }
}

/* temas dos mini-sites */
.mini-store     { --t1: #1C2530; --t2: #C7A23C; --soft: #F4F1EA; }
.mini-game      { --t1: #7C3AED; --t2: #F59E0B; --soft: #F5F3FF; }
.mini-food      { --t1: #EA580C; --t2: #F59E0B; --soft: #FFF7ED; }
.mini-business  { --t1: #6B7280; --t2: #1C2530; --soft: #F3F4F6; }
.mini-portfolio { --t1: #EC4899; --t2: #8B5CF6; --soft: #FDF2F8; }

/* blocos genéricos do mini-site */
.ms-nav {
  height: 22px;
  background: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  box-shadow: var(--shadow-sm);
}
.ms-nav i { width: 36px; height: 8px; border-radius: 4px; background: var(--t1); }
.ms-nav b { width: 18px; height: 6px; border-radius: 3px; background: var(--gray-200); }
.ms-nav b:last-child { margin-left: auto; width: 26px; background: var(--t2); }

.ms-hero {
  height: 86px;
  border-radius: 11px;
  background: linear-gradient(120deg, var(--t1), var(--t2));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.ms-hero::before {
  content: '';
  position: absolute;
  left: 13px; top: 17px;
  width: 52%; height: 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 0 -3px rgba(255, 255, 255, .65);
}
.ms-hero::after {
  content: '';
  position: absolute;
  left: 13px; bottom: 14px;
  width: 30%; height: 14px;
  border-radius: 7px;
  background: rgba(15, 23, 42, .35);
}

.ms-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.ms-item {
  height: 54px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.ms-item::before {
  content: '';
  position: absolute;
  inset: 8px 8px auto 8px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(120deg, var(--t1), var(--t2));
  opacity: .8;
}
.ms-item::after {
  content: '';
  position: absolute;
  left: 8px; bottom: 8px;
  width: 62%; height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
}

.ms-wide {
  height: 46px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.ms-wide::before {
  content: '';
  position: absolute;
  left: 10px; top: 10px;
  width: 38px; height: 26px;
  border-radius: 6px;
  background: linear-gradient(120deg, var(--t1), var(--t2));
  opacity: .8;
}
.ms-wide::after {
  content: '';
  position: absolute;
  left: 60px; top: 13px;
  width: 45%; height: 7px;
  border-radius: 4px;
  background: var(--gray-200);
  box-shadow: 0 13px 0 -1px var(--gray-200);
}

.ms-cta2 { height: 34px; border-radius: 9px; background: var(--t1); opacity: .92; }
.ms-foot { height: 24px; border-radius: 7px; background: #CBD5E1; }

.site-preview__caption {
  padding: 14px 18px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}
.site-preview__caption small { display: block; font-weight: 500; color: var(--text-muted); font-size: 12px; }

@media (max-width: 1024px) {
  .previews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .app-tile { width: 56px; height: 56px; font-size: 24px; border-radius: 16px; }
  .app-tile--lg { width: 68px; height: 68px; font-size: 30px; border-radius: 19px; }
  .app-tile--sm { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
  .cluster__row { gap: 12px; margin: 22px 0; }
}

/* ============================================================
   SCREENSHOTS REAIS — rolagem animada dentro dos mockups
   ============================================================ */
.site-preview__screen { --sh: 250px; }
.site-preview__screen--lg { --sh: 340px; height: 340px; }

.ms-photo {
  width: 100%;
  display: block;
  animation: img-scroll 16s ease-in-out infinite;
  will-change: transform;
}
.site-preview:hover .ms-photo { animation-play-state: paused; }
.site-preview:nth-child(2) .ms-photo { animation-duration: 18s; animation-delay: .9s; }
.site-preview:nth-child(3) .ms-photo { animation-duration: 14s; animation-delay: 1.8s; }

@keyframes img-scroll {
  0%, 12% { transform: translateY(0); }
  46%, 58% { transform: translateY(calc(-100% + var(--sh, 250px))); }
  92%, 100% { transform: translateY(0); }
}

/* mockup real dentro dos detalhes de serviço */
.service-detail__visual--img { padding: 18px; }
.service-detail__visual--img::after { display: none; }
.service-detail__visual--img .site-preview { width: 100%; max-width: 420px; }

/* banner de foto (página Sobre) */
.photo-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.photo-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 6s ease;
}
.photo-banner:hover img { transform: scale(1.06); }
.photo-banner__tag {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}
.photo-banner__tag strong { font-family: var(--font-display); font-size: 16px; display: block; }
.photo-banner__tag small { color: var(--text-muted); font-size: 13px; }

@media (max-width: 480px) {
  .photo-banner img { height: 260px; }
  .service-detail__visual--img { padding: 12px; }
}

/* ============================================================
   IMAGENS REAIS NOS PAINÉIS DUO (Google Ads)
   ============================================================ */
.duo__img {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.duo__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 5s ease;
}
.duo__img:hover img { transform: scale(1.06); }

/* ============================================================
   SELETOR DE IDIOMA (navbar)
   ============================================================ */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 7px 12px;
  font: 600 13px var(--font);
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.lang-switch__btn:hover { border-color: var(--blue); color: var(--blue); }
.lang-switch__btn svg { width: 12px; height: 12px; transition: transform .25s; }
.lang-switch.is-open .lang-switch__btn svg { transform: rotate(180deg); }
.lang-switch__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1200;
}
.lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__menu a {
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.lang-switch__menu a:hover { background: var(--gray); color: var(--blue); }
.lang-switch__menu a.is-current { color: var(--blue); background: rgba(28, 37, 48, .08); }

@media (max-width: 768px) {
  .lang-switch__btn { padding: 6px 10px; }
}

/* ============================================================
   ALCANCE DO GOOGLE ADS (onde os anúncios aparecem)
   ============================================================ */
.ads-reach {
  margin-top: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 42px 38px;
}
.ads-reach__head { text-align: center; margin-bottom: 28px; }
.ads-reach__head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -.02em;
  margin-top: 10px;
}
.ads-reach__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.ads-reach__item {
  background: var(--gray);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ads-reach__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(28, 37, 48, .35);
}
.ads-reach__item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 10px;
}
.ads-reach__item .icon svg { width: 21px; height: 21px; }
.ads-reach__item h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.ads-reach__item p { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }
.ads-reach__pitch {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.7;
}
.ads-reach__pitch strong { color: var(--text); }
.ads-reach__cta { text-align: center; }

@media (max-width: 900px) {
  .ads-reach__grid { grid-template-columns: repeat(3, 1fr); }
  .ads-reach { padding: 34px 24px; }
}
@media (max-width: 560px) {
  .ads-reach__grid { grid-template-columns: repeat(2, 1fr); }
  .ads-reach__item:last-child { grid-column: 1 / -1; }
}

/* Legenda sob o frame do Google Ads (aba Serviços) */
.frame-caption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
}
.frame-caption strong { color: var(--text-soft); }

/* ============================================================
   SELETOR DE MOEDA + CONTATOS DISCRETOS
   ============================================================ */
.cur-switch { display: flex; flex-direction: column; align-items: center; gap: 13px; margin-bottom: 46px; text-align: center; }
.cur-switch__label { font-size: 14.5px; font-weight: 600; color: var(--text-soft); }
.cur-switch__label strong { color: var(--mint-dark); }
.cur-switch__btns { display: inline-flex; background: #fff; border: 1px solid var(--gray-200); border-radius: 999px; padding: 5px; gap: 4px; box-shadow: 0 2px 12px rgba(11, 20, 36, .07); }
.cur-btn { border: 0; background: transparent; padding: 9px 20px; border-radius: 999px; font: 600 13.5px 'Inter', sans-serif; color: var(--text-soft); cursor: pointer; transition: all .25s ease; }
.cur-btn:hover { color: var(--blue); }
.cur-btn.is-active { background: var(--blue); color: #fff; box-shadow: 0 6px 16px -4px rgba(28, 37, 48, .45); }

/* Contato discreto: dados nunca exibidos, apenas ações */
.footer__contact a { display: flex; gap: 9px; align-items: center; color: inherit; text-decoration: none; transition: color .2s ease; }
.footer__contact a:hover { color: var(--blue); }
.footer__contact a svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }
a.contact-card { text-decoration: none; color: inherit; cursor: pointer; }


/* ============ HERO: MOCKUP DE NAVEGADOR (visual profissional) ============ */
.hero__browser {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: float 5.5s ease-in-out infinite;
}
.hero__browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: var(--gray);
  border-bottom: 1px solid var(--gray-200);
}
.hero__browser-bar i { width: 10px; height: 10px; border-radius: 50%; }
.hero__browser-bar i:nth-child(1) { background: #FCA5A5; }
.hero__browser-bar i:nth-child(2) { background: #FCD34D; }
.hero__browser-bar i:nth-child(3) { background: #86EFAC; }
.hero__browser-bar em {
  font-style: normal; font-size: 12px; color: var(--text-muted);
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 7px; padding: 4px 12px; margin-left: 8px;
  flex: 1; max-width: 250px; white-space: nowrap; overflow: hidden;
}
.hero__browser img { width: 100%; height: 340px; object-fit: cover; object-position: top; }
@media (max-width: 900px) { .hero__browser img { height: 250px; } }

/* ============================================================
   REDESIGN EDITORIAL MONOCROMÁTICO
   Tipografia gigante · preto/branco/cinza · pills · cards grandes
   ============================================================ */

body { background: var(--gray); color: var(--text); }

/* ---------- tipografia base ---------- */
h1, h2, h3, .stat__num { letter-spacing: -.03em; }

/* ---------- botões: pílulas ---------- */
.btn {
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--primary { background: var(--text); color: #fff; box-shadow: none; }
.btn--primary:hover { background: #000; transform: translateY(-2px); box-shadow: none; }
.btn--mint { background: var(--white); color: var(--text); border: 1px solid rgba(0,0,0,.14); box-shadow: none; }
.btn--mint:hover { background: var(--text); color: #fff; border-color: var(--text); transform: translateY(-2px); box-shadow: none; }
.btn--outline { background: transparent; color: var(--text); border: 1px solid rgba(0,0,0,.22); }
.btn--outline:hover { background: var(--text); color: #fff; border-color: var(--text); transform: translateY(-2px); }

/* ---------- header minimalista ---------- */
.header {
  background: rgba(233, 233, 233, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
}
.nav__link { font-size: 14.5px; font-weight: 500; color: var(--text-soft); }
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link::after { background: var(--text); height: 1.5px; }
.lang-switch__btn { border: 1px solid rgba(0,0,0,.14); background: var(--white); border-radius: 999px; }

/* ---------- HERO centrado, título gigante ---------- */
.hero {
  padding: 150px 0 0;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(255,255,255,.9), transparent 65%),
    var(--gray);
}
.hero__center { text-align: center; max-width: 1000px; margin: 0 auto; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 9px 20px;
  margin-bottom: 34px;
}
.hero__label .dot, .hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text);
  animation: pulse-dot 2s ease infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 148px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 30px;
}
.hero__title .accent { color: transparent; -webkit-text-stroke: 2px var(--text); }
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero__proof { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero__proof-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-soft);
}
.hero__proof-item svg { width: 16px; height: 16px; color: var(--text); }

/* bloco de mídia grande, cantos bem arredondados */
.hero__media { position: relative; max-width: 1120px; margin: 0 auto; }
.hero__browser {
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.28);
  animation: none;
}
.hero__browser img { height: clamp(300px, 46vw, 560px); }
.hero__mini {
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.22);
}
.hero__mini .icon { background: var(--blue-light); color: var(--text); border-radius: 12px; }

/* ---------- marquee: faixa preta ---------- */
.marquee {
  background: var(--text);
  border-top: none;
  border-bottom: none;
  margin-top: 90px;
  padding: 20px 0;
}
.marquee__item { color: #fff; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; font-size: 14px; }
.marquee__item svg { color: #fff; }

/* ---------- títulos de seção gigantes ---------- */
.section { padding: 110px 0; }
.section--gray { background: var(--white); }
.eyebrow {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(0,0,0,.16);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section-head { max-width: 900px; margin-bottom: 70px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: var(--text);
}
.section-head p { font-size: 17px; color: var(--text-muted); margin-top: 20px; }
.gradient-text { background: none; -webkit-text-fill-color: currentColor; color: inherit; }

/* ---------- stats ---------- */
.stat {
  background: var(--white);
  border: none;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.section--gray .stat { background: var(--gray); }
.stat__num { font-family: var(--font-display); color: var(--text); font-weight: 800; letter-spacing: -.03em; }
.stat__num sup { color: var(--text-muted); }
.stat p { color: var(--text-muted); }

/* ---------- duo ---------- */
.duo__panel {
  background: var(--white);
  border: none;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.duo__tag { border-radius: 999px; font-size: 12px; letter-spacing: .1em; }
.duo__tag--blue { background: var(--text); color: #fff; }
.duo__tag--mint { background: var(--blue-light); color: var(--text); }
.duo__panel ul li svg { color: var(--text); }
.duo__img { border-radius: 18px; }
.duo__plus {
  background: var(--text);
  color: #fff;
  width: 64px; height: 64px;
  border-radius: 50%;
  font-size: 34px;
  box-shadow: none;
}
.duo__result {
  background: var(--text);
  color: #fff;
  border-radius: 22px;
  font-weight: 500;
}
.duo__result strong { color: #fff; font-weight: 700; }

/* ---------- ads-reach ---------- */
.ads-reach__item {
  background: var(--white);
  border: none;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.ads-reach__item .icon { background: var(--blue-light); color: var(--text); border-radius: 14px; }
.ads-reach__pitch { color: var(--text-soft); }
.ads-reach__pitch strong { color: var(--text); }

/* ---------- cards ---------- */
.card {
  background: var(--white);
  border: none;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}
.section--gray .card { background: var(--gray); box-shadow: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon, .card__icon--mint {
  background: var(--text) !important;
  color: #fff;
  border-radius: 16px;
  box-shadow: none;
}

/* ---------- steps ---------- */
.step {
  background: var(--white);
  border: none;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.section--gray .step { background: var(--gray); box-shadow: none; }
.step__num {
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  box-shadow: none;
}

/* ---------- seção POR QUE CONTRATAR (lista editorial) ---------- */
.why { border-top: 1px solid rgba(0,0,0,.1); }
.why__row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 28px;
  align-items: baseline;
  padding: 38px 10px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  transition: background .3s ease, padding .3s ease;
}
.why__row:hover { background: rgba(255,255,255,.6); padding-left: 22px; }
.why__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .05em;
}
.why__row h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}
.why__row p { color: var(--text-muted); font-size: 15.5px; line-height: 1.65; }

/* ---------- previews de sites ---------- */
.site-preview {
  border-radius: 26px;
  border: none;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.site-preview:hover { box-shadow: var(--shadow-lg); }
.site-preview__bar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,.06); }
.site-preview__bar em { background: var(--gray); border: none; color: var(--text-muted); }

/* ---------- CTA final / blocos escuros: preto puro ---------- */
.cta-final {
  background: var(--text);
  border-radius: 32px;
  box-shadow: none;
}
.cta-final::before, .cta-final::after { display: none; }
.cta-final h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-weight: 800;
  line-height: 1.02;
}
.cta-final h2 .gradient-text { -webkit-text-fill-color: #fff; color: #fff; opacity: .55; }
.cta-final p { color: rgba(255,255,255,.65); }
.cta-final .btn--primary { background: #fff; color: var(--text); box-shadow: none; }
.cta-final .btn--primary:hover { background: var(--gray); }
.cta-final .btn--mint { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.cta-final .btn--mint:hover { background: #fff; color: var(--text); border-color: #fff; }
.custom-quote {
  background: var(--text);
  border-radius: 28px;
  box-shadow: none;
}
.custom-quote p { color: rgba(255,255,255,.65); }
.custom-quote .btn { background: #fff; color: var(--text); }
.custom-quote .btn:hover { background: var(--gray); }

/* ---------- página interna: hero ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(255,255,255,.9), transparent 65%),
    var(--gray);
  padding: 170px 0 80px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
  line-height: 1;
}
.page-hero p { color: var(--text-muted); }
.breadcrumb { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }

/* ---------- pricing ---------- */
.price-card {
  background: var(--white);
  border: none;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--text);
  color: #fff;
  border: none;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.4);
}
.price-card--featured h3 { color: #fff; }
.price-card--featured .price-card__price .currency,
.price-card--featured .price-card__price .value { color: #fff; }
.price-card--featured .price-card__price .period { color: rgba(255,255,255,.55); }
.price-card--featured .price-card__fee { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.18); }
.price-card--featured .price-card__desc,
.price-card--featured > p { color: rgba(255,255,255,.65); }
.price-card--featured li { color: rgba(255,255,255,.85); }
.price-card--featured ul li { color: rgba(255,255,255,.85); }
.price-card--featured ul li.is-off { color: rgba(255,255,255,.4); opacity: 1; }
.price-card--featured ul li.is-off svg { color: rgba(255,255,255,.4); }
.price-card--featured .price-card__old { color: rgba(255,255,255,.45); }
.price-card.price-card--featured ul li svg { color: #fff; }
.price-card--featured .btn--primary { background: #fff; color: var(--text); }
.price-card--featured .btn--primary:hover { background: var(--gray); }
.price-card__flag {
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 8px 20px;
}
.price-card--featured .price-card__flag { background: #fff; color: var(--text); }
.price-card__price strong { font-family: var(--font-display); letter-spacing: -.03em; }
.price-card ul li svg { color: var(--text); }
.price-card__old { color: var(--text-muted); }
.plan-guarantees span { color: var(--text-muted); }
.plan-guarantees svg { color: var(--text); }

/* ---------- seletor de moeda ---------- */
.cur-switch { background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: 999px; box-shadow: var(--shadow-sm); }
.cur-btn { border-radius: 999px; color: var(--text-soft); font-weight: 600; }
.cur-btn.is-active { background: var(--text); color: #fff; box-shadow: none; }
.cur-note { color: var(--text-muted); }
.cur-note strong { color: var(--text); }

/* ---------- tabs ---------- */
.tab-btn {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.16);
  background: var(--white);
  color: var(--text-soft);
  font-weight: 600;
}
.tab-btn:hover { border-color: var(--text); color: var(--text); }
.tab-btn.is-active { background: var(--text); border-color: var(--text); color: #fff; box-shadow: none; }

/* ---------- FAQ / acordeão ---------- */
.faq-item, .accordion__item {
  background: var(--white);
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary, .accordion__head { color: var(--text); font-weight: 600; }

/* ---------- formulário ---------- */
.form-card, .contact-form {
  background: var(--white);
  border: none;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.form-group input, .form-group select, .form-group textarea,
.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--gray);
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--text);
  background: var(--white);
  outline: none;
  box-shadow: none;
}
.contact-card {
  background: var(--white);
  border: none;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card .icon { background: var(--blue-light); color: var(--text); border-radius: 14px; }

/* ---------- sobre / valores / equipe ---------- */
.value-card, .team-card, .service-detail, .gallery__item {
  border-radius: 24px;
}
.gallery__item img, .service-detail img { border-radius: 20px; }

/* ---------- footer preto ---------- */
.footer {
  background: #161616;
  color: rgba(255,255,255,.72);
  border-top: none;
}
.footer h4, .footer__title { color: #fff; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer__brand p { color: rgba(255,255,255,.55); }
.footer__contact a { color: rgba(255,255,255,.72); }
.footer__contact a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); }
.footer__bottom span { color: rgba(255,255,255,.45); }

/* ---------- chatbot ---------- */
.chatbot__btn { background: var(--text); box-shadow: 0 14px 34px -10px rgba(0,0,0,.4); }
.chatbot__btn .badge { background: #fff; border-color: var(--gray); }
.chatbot__panel { border-radius: 24px; border: none; box-shadow: 0 30px 70px -18px rgba(0,0,0,.35); }
.chatbot__head { background: var(--text); }
.chatbot__quick button { border-radius: 999px; border: 1px solid rgba(0,0,0,.14); background: var(--white); color: var(--text-soft); }
.chatbot__quick button:hover { background: var(--text); color: #fff; border-color: var(--text); }
.chatbot__send, .chatbot__input button { background: var(--text); border-radius: 50%; }
.msg--bot .msg__bubble { background: var(--blue-light); border-radius: 16px; }

/* ---------- menu mobile ---------- */
.nav__menu.is-open { background: var(--white); border-radius: 24px; box-shadow: var(--shadow-lg); }

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  .hero { padding: 120px 0 0; }
  .hero__proof { gap: 12px 20px; margin-bottom: 44px; }
  .marquee { margin-top: 64px; }
  .why__row { grid-template-columns: 1fr; gap: 8px; padding: 28px 6px; }
  .why__num { font-size: 13px; }
  .section { padding: 80px 0; }
}

/* ---------- demo interativa no hero (iframe) ---------- */
.hero__media { position: relative; }
.hero__demo-tag {
  position: absolute;
  top: -16px; left: 22px;
  z-index: 6;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.35);
}
.hero__browser iframe {
  width: 100%;
  height: clamp(340px, 46vw, 560px);
  border: 0;
  display: block;
  background: #141210;
}
@media (max-width: 900px) {
  .hero__browser iframe { height: 420px; }
  .hero__demo-tag { left: 12px; }
}

/* ---------- mobile: cards flutuantes não podem cobrir a demo ---------- */
@media (max-width: 900px) {
  .hero__mini { display: none; }
}

/* ============================================================
   PROJECTS CAROUSEL SLIDER (AUTO-PLAY)
   ============================================================ */
.projects-slider-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  background: #0f141c;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  background: #121824;
  color: #fff;
}

@media (max-width: 900px) {
  .carousel-slide {
    grid-template-columns: 1fr;
  }
}

.carousel-slide__media {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #000;
}

.carousel-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-slide:hover .carousel-slide__media img {
  transform: scale(1.03);
}

.carousel-slide__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(28, 37, 48, 0.85);
  backdrop-filter: blur(8px);
  color: #E5C97E;
  border: 1px solid rgba(229, 201, 126, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel-slide__content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .carousel-slide__content {
    padding: 28px 20px;
  }
  .carousel-slide__media {
    height: 260px;
  }
}

.carousel-slide__tag {
  color: #E5C97E;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.carousel-slide__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 700;
}

.carousel-slide__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.carousel-slide__techs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.carousel-slide__techs span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s;
}

.carousel-nav:hover {
  background: #C7A23C;
  color: #1C2530;
  border-color: #C7A23C;
}

.carousel-nav--prev { left: 16px; }
.carousel-nav--next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.is-active {
  background: #E5C97E;
  width: 28px;
  border-radius: 12px;
}

/* ============================================================
   DUAL COMPUTERS SHOWCASE (LADO A LADO / EMPILHADOS NO MOBILE)
   ============================================================ */
.showcase-duo-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  border-top: 1px solid var(--gray-200);
}

.showcase-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .showcase-duo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.computer-mockup-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.computer-mockup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.computer-frame {
  background: #1C2530;
  padding: 12px 14px 14px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.computer-frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.computer-frame__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.computer-frame__bar i:nth-child(1) { background: #FF5F56; }
.computer-frame__bar i:nth-child(2) { background: #FFBD2E; }
.computer-frame__bar i:nth-child(3) { background: #27C93F; }

.computer-frame__title {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
}

.computer-screen-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #000;
}

@media (max-width: 600px) {
  .computer-screen-img {
    height: 210px;
  }
}

.computer-mockup-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.computer-mockup-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1C2530;
  display: flex;
  align-items: center;
  gap: 8px;
}

.computer-mockup-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.computer-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.computer-features-list li {
  font-size: 13.5px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.computer-features-list li svg {
  color: #C7A23C;
  flex-shrink: 0;
}

/* ============================================================
   CATEGORIAS DE SERVIÇOS EXPANDIDAS (ESTILO MAZZATECH)
   ============================================================ */
.service-categories-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.category-box {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1C2530, #C7A23C);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  border-color: #C7A23C;
}

.category-box:hover::before {
  opacity: 1;
}

.category-box__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F4F5F7;
  color: #1C2530;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.category-box h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1C2530;
}

.category-box p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.category-box__items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.category-box__items li {
  font-size: 13px;
  color: #4A4A4A;
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-box__items li:last-child {
  border-bottom: none;
}

.category-box__items li svg {
  color: #27C93F;
  flex-shrink: 0;
}

/* ============================================================
   BOTAO DE VOLTAR / SAIR NO CHECKOUT (HOME/PRICING)
   ============================================================ */
.checkout-back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F9FA;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 24px;
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1C2530;
  text-decoration: none;
  transition: color 0.2s;
}

.checkout-back-link:hover {
  color: #A5832A;
}

.checkout-back-link svg {
  transition: transform 0.2s;
}

.checkout-back-link:hover svg {
  transform: translateX(-3px);
}

/* ============================================================
   PÁGINA DE AVALIAÇÕES / AVIS CLIENTS (ESTILO GOOGLE REVIEWS)
   ============================================================ */
.reviews-summary {
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-score__number {
  font-size: 48px;
  font-weight: 800;
  font-family: var(--font-display);
  color: #1C2530;
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 4px;
  color: #FBBC04;
}

.reviews-stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.reviews-meta-count {
  font-size: 14px;
  color: #6D6D6D;
  margin-top: 4px;
}

.reviews-badge-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8F9FA;
  border: 1px solid #E2E2E0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  border-color: #C7A23C;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C2530, #3A4754);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.review-avatar--blue { background: linear-gradient(135deg, #1A73E8, #4285F4); }
.review-avatar--green { background: linear-gradient(135deg, #0F9D58, #34A853); }
.review-avatar--gold { background: linear-gradient(135deg, #C7A23C, #F4B400); }
.review-avatar--purple { background: linear-gradient(135deg, #673AB7, #9C27B0); }

.review-author__name {
  font-size: 15px;
  font-weight: 700;
  color: #1C2530;
  margin-bottom: 2px;
}

.review-author__meta {
  font-size: 12px;
  color: #888;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.review-rating-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
}

.review-rating-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-date {
  font-size: 12px;
  color: #888;
}

.review-body {
  font-size: 14px;
  line-height: 1.6;
  color: #4A4A4A;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-visit {
  font-size: 12px;
  color: #777;
  font-style: italic;
  margin-bottom: 14px;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #F0F0F0;
  font-size: 12.5px;
  color: #666;
}

.review-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.review-action-btn:hover {
  background: #F4F5F7;
  color: #1C2530;
}

.review-action-btn svg {
  width: 15px;
  height: 15px;
}

.review-owner-reply {
  background: #F8F9FA;
  border-left: 3px solid #C7A23C;
  border-radius: 0 12px 12px 0;
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 12.5px;
  color: #4A4A4A;
}

.review-owner-reply__header {
  font-weight: 700;
  color: #1C2530;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.review-owner-reply__date {
  font-weight: normal;
  font-size: 11px;
  color: #888;
}

.btn-leave-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1C2530;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(28, 37, 48, 0.25);
}

.btn-leave-review:hover {
  background: #C7A23C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 162, 60, 0.35);
}

.write-review-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.write-review-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.write-review-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.write-review-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F4F5F7;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.star-rating-select {
  display: flex;
  gap: 8px;
  margin: 10px 0 18px;
  cursor: pointer;
}

.star-rating-select svg {
  width: 30px;
  height: 30px;
  fill: #E2E2E0;
  transition: fill 0.2s, transform 0.2s;
}

.star-rating-select svg:hover,
.star-rating-select svg.is-active {
  fill: #FBBC04;
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .write-review-box {
    padding: 22px 16px;
  }
}



