/* =============================================================
   SITE PRO SEU NEGÓCIO — Dark Luxury Redesign (Black Refresh)
   ============================================================= */

:root {
  /* Fundo preto profundo com gradações elegantes */
  --bg-0: #0a0a0a;
  --bg-1: #0f0f0f;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --bg-card: #131313;
  --bg-elev: #181818;

  /* Tipografia clara com tom quente para dar contraste */
  --text-100: #ffffff;
  --text-90: #f5f0e6;
  --text-80: #ebe4d3;
  --text-70: #cfc7b5;
  --text-60: #a8a091;
  --text-50: #857e70;
  --text-40: #5f5a4f;

  /* Amarelo forte e vibrante de alto contraste */
  --primary: #FFD000;
  --primary-dark: #E6B800;
  --primary-soft: rgba(255, 208, 0, 0.16);
  --accent: #FFD000;
  --accent-2: #FFE047;
  --accent-red: #d95a52;
  --success: #2ec27e;
  --warn: #FFD000;

  --grad-primary: linear-gradient(135deg, #FFB800 0%, #FFD000 50%, #FFE047 100%);
  --grad-primary-hover: linear-gradient(135deg, #FFC700 0%, #FFE54C 100%);
  --grad-text: linear-gradient(135deg, #FFF066 0%, #FFD000 55%, #FFAC00 100%);
  --grad-soft: linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%);

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --gold-line: rgba(255, 208, 0, 0.35);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.35);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 16px 36px rgba(255, 208, 0, 0.22);

  --ff-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Cormorant Garamond', Georgia, serif;

  --container: 1200px;
  --header-h: 82px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light theme — alternativa clara (opcional, ativada pelo toggle) */
body.light-theme {
  --bg-0: #ffffff;
  --bg-1: #ffffff;
  --bg-2: #f7f7f5;
  --bg-3: #efeeea;
  --bg-card: #ffffff;
  --bg-elev: #fafaf8;
  --text-100: #121212;
  --text-90: #1c1c1c;
  --text-80: #262626;
  --text-70: #444444;
  --text-60: #666666;
  --text-50: #858585;
  --text-40: #a8a8a8;
  --primary: #A87A00;
  --primary-dark: #8A6400;
  --primary-soft: #fff9e6;
  --accent: #B8860B;
  --warn: #D49B00;
  --border: rgba(18, 18, 18, 0.08);
  --border-strong: rgba(18, 18, 18, 0.15);
  --gold-line: rgba(168, 122, 0, 0.25);
  --shadow-sm: 0 10px 24px rgba(17, 17, 17, 0.06);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.10);
  --shadow-lg: 0 30px 80px rgba(17, 17, 17, 0.12);
  --grad-primary: linear-gradient(135deg, #FFB800 0%, #FFD000 100%);
  --grad-primary-hover: linear-gradient(135deg, #FFC700 0%, #FFE54C 100%);
  --grad-text: linear-gradient(135deg, #8A6400 0%, #B8860B 50%, #8A6400 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

/* Compatibilidade com marcação antiga: .dark-theme mantém o padrão dark */
body.dark-theme { /* já é o padrão via :root */ }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #0a0a0a; }
body {
  font-family: var(--ff-body);
  background: var(--bg-0);
  color: var(--text-70);
  line-height: 1.68;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.light-theme { background: #ffffff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s var(--ease); }
button { font: inherit; color: inherit; border: none; background: none; cursor: pointer; }
input, textarea, select { font: inherit; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

::selection { background: rgba(255, 255, 255, 0.30); }

/* Focus-visible acessível */
.btn:focus-visible,
.nav a:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Scroll margin para não colar no header ao usar âncoras */
section[id] {
  scroll-margin-top: 100px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 120;
  background: var(--grad-primary);
  box-shadow: 0 0 18px rgba(255, 208, 0, 0.65);
}

h1, h2, h3, h4, h5 {
  color: var(--text-100);
  line-height: 1.1;
}

h1, h2, .section__title, .hero__title, .price-card h3 {
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
}

/* H1 reduzido para proporção e harmonia com a coluna da direita */
h1 { font-size: clamp(2.1rem, 3.2vw, 3.1rem); line-height: 1.16; }
h2 { font-size: clamp(2.2rem, 3.8vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }
h5 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.grad-text {
  display: inline;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.28);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section__header {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section__title { margin-bottom: 18px; }
.section__title span { display: block; }
.section__desc {
  font-size: 1.05rem;
  color: var(--text-60);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--sm { padding: 10px 16px; font-size: 0.88rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn i { font-size: 0.95em; }

.btn--primary {
  background: var(--grad-primary);
  color: #0a0a0a !important;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(255, 208, 0, 0.26);
  text-shadow: none;
}
.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-2px);
  background: var(--grad-primary-hover);
  box-shadow: 0 18px 42px rgba(255, 208, 0, 0.40);
  color: #0a0a0a !important;
}

/* Garantia extra: o botão CTA dentro do nav não deve herdar cor do link */
.nav a.btn.btn--primary,
.nav a.btn.btn--primary:hover,
.nav a.btn.btn--primary:focus {
  color: #0a0a0a !important;
}

.btn--ghost {
  background: transparent;
  color: var(--text-100);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.btn--white {
  background: #fff;
  color: var(--text-100);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { transform: translateY(-2px); }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  min-height: 82px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
body.light-theme .header { background: rgba(255, 255, 255, 0.88); }
.header.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
body.light-theme .header.scrolled {
  box-shadow: 0 6px 24px rgba(17,17,17,0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-100);
}
.logo__mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.logo__mark svg,
.logo__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo__mark--footer { width: 52px; height: 52px; }
.logo__text {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo__text span { color: var(--primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-70);
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover {
  background: rgba(255, 208, 0, 0.12);
  color: var(--text-100);
}
.nav a.btn:hover { color: #0a0a0a !important; background: var(--grad-primary-hover); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle,
.lang-toggle {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-sm);
}
body.light-theme .theme-toggle,
body.light-theme .lang-toggle { background: rgba(255,255,255,0.55); }

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.theme-toggle:hover { transform: translateY(-1px); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
}
.lang-toggle__flag {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-60);
  cursor: pointer;
}
.lang-toggle__flag.active {
  background: var(--grad-primary);
  color: #0a0a0a;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-100);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  padding: calc(var(--header-h) + 24px) 0 60px;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__glow--1 {
  top: -120px;
  left: -90px;
  width: 340px;
  height: 340px;
  background: rgba(255, 208, 0, 0.22);
}
.hero__glow--2 {
  right: -80px;
  bottom: -80px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.22);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 208, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 0, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}

.breadcrumbs-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #CBD5E1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.95;
}
.breadcrumbs-mini span { color: #94A3B8; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.30);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 24px;
}
.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(23, 114, 69, 0.16);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 6px rgba(23, 114, 69, 0.18); }
  50% { box-shadow: 0 0 0 12px rgba(23, 114, 69, 0); }
}

.hero__title {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__title span { display: block; }
.hero__subtitle {
  max-width: 600px;
  color: var(--text-60);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 28px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 680px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.stat {
  padding: 4px 0;
}
.stat__num {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 4px;
}
.stat__label {
  color: var(--text-60);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.hero__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-lg);
}
.hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: inherit;
  pointer-events: none;
}
.hero__card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 24px;
}

.floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-size: 0.84rem;
  font-weight: 700;
  color: #121212;
  animation: float 4s ease-in-out infinite;
}
body.light-theme .floating a,
body.light-theme .floating button { background: rgba(255,255,255,0.92); }
.floating i { color: #FFD000; }
body.light-theme .floating i { color: #A87A00; }
.floating--1 { top: 7%; left: -6%; }
.floating--2 { bottom: 14%; right: -6%; animation-delay: 1s; }
.floating--3 { top: 45%; right: -4%; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trustbar {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
body.light-theme .trustbar { background: #ffffff; }
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.trustbar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--text-80);
  font-size: 0.95rem;
  font-weight: 600;
}
.trustbar__item i { color: var(--primary); }

.services__grid,
.portfolio__grid,
.pricing__grid,
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.port-card,
.price-card,
.testimonial,
.process-step,
.contact__form,
.contact__channel,
.faq-item,
.about__photo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 208, 0, 0.45);
}
.service-card.featured {
  border-color: rgba(255, 208, 0, 0.55);
  box-shadow: var(--shadow-gold);
}
.service-card__flag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(143, 47, 40, 0.10);
  color: var(--accent-red);
  font-size: 0.78rem;
  font-weight: 700;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 208, 0, 0.18), rgba(255, 255, 255, 0.06));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.35rem;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p {
  color: var(--text-60);
  margin-bottom: 18px;
}
.service-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-70);
  font-size: 0.95rem;
}
.service-card li i {
  color: var(--primary);
  margin-top: 4px;
}

.pricing { background: #0d0d0d; }
body.light-theme .pricing { background: #fafaf8; }

.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.04) 0%, var(--bg-card) 100%);
}

body.light-theme .price-card.featured {
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.08) 0%, #ffffff 100%);
  border-color: #A87A00;
}

.price-card__top-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.15);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card__badge--featured {
  background: var(--primary);
  color: #0a0a0a;
  font-weight: 800;
}

body.light-theme .price-card__badge--featured {
  background: #A87A00;
  color: #ffffff;
}

.price-card__discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.3);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
}

body.light-theme .price-card__discount-tag {
  background: rgba(168, 122, 0, 0.1);
  border-color: rgba(168, 122, 0, 0.3);
  color: #704F00;
}

.price-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
}

.price-card__desc {
  color: var(--text-60);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 48px;
}

.price-card__price-box {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-card__old-price {
  font-size: 1.05rem;
  color: var(--text-40);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-card__main-price {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.1;
}

.price-card__main-price .promo-price {
  color: var(--primary);
}

body.light-theme .price-card__main-price .promo-price {
  color: #A87A00;
}

.price-card__condition {
  display: block;
  font-size: 0.88rem;
  color: var(--text-50);
  margin-top: 4px;
  font-weight: 500;
}

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-80);
  font-size: 0.95rem;
  line-height: 1.45;
  padding-left: 0;
}

.price-card__features li::before {
  content: none;
}

.price-card__features li i {
  color: #22c55e;
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.port-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.port-card__img {
  position: relative;
  overflow: hidden;
}
.port-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  transition: transform 0.35s var(--ease-out);
}
.port-card:hover .port-card__img img { transform: scale(1.03); }
.port-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.44));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.port-card:hover .port-card__overlay { opacity: 1; }
.port-card__body { padding: 24px; }
.port-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.port-card h3 { margin-bottom: 10px; }
.port-card p {
  color: var(--text-60);
  margin-bottom: 16px;
}
.port-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.port-card__stack span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}
.portfolio__cta {
  margin-top: 38px;
  text-align: center;
}
.portfolio__cta p {
  margin-bottom: 16px;
  color: var(--text-60);
  font-size: 1rem;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
}
.about__photo {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: calc(var(--radius-xl) - 8px);
}
.about__badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  color: var(--text-100);
  font-weight: 700;
}
body.light-theme .about__badge { background: rgba(255,255,255,0.92); }
.about__badge i { color: var(--accent-red); }
.about__content {
  background: linear-gradient(135deg, #0e0d0a 0%, #050505 100%);
  border: 1px solid rgba(255, 208, 0, 0.18);
  border-left: 4px solid var(--primary);
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.light-theme .about__content {
  background: #ffffff;
  border-color: rgba(168, 122, 0, 0.30);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.30);
  border-radius: 4px;
  margin-bottom: 24px;
}

.about__title {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-100);
  margin-bottom: 24px;
}

.about__desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-60);
  margin: 0;
}

.gold-text {
  color: var(--primary);
}

.process {
  background: rgba(255,255,255,0.02);
}
body.light-theme .process { background: #fafaf8; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.process-step {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}
.process-step__num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255, 208, 0, 0.18), rgba(255, 255, 255, 0.06));
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { color: var(--text-60); }

.testimonials__grid { gap: 22px; }
.testimonial {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial__title {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
}
.testimonial__stars {
  letter-spacing: 0.2em;
  color: var(--warn);
  text-shadow: 0 0 12px rgba(255, 208, 0, 0.40);
  margin-bottom: 16px;
}
.testimonial p {
  color: var(--text-70);
  margin-bottom: 20px;
  line-height: 1.65;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: auto;
  width: 100%;
}
.testimonial__author span {
  display: block;
  color: var(--text-50);
  font-size: 0.88rem;
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}
.faq__head p {
  color: var(--text-60);
  margin-bottom: 22px;
}
.faq__list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border-radius: var(--radius);
  padding: 0 22px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 32px 20px 0;
  font-weight: 700;
  color: var(--text-100);
  position: relative;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  color: var(--text-60);
  padding: 0 0 20px;
}

.contact {
  padding-bottom: 120px;
}
.contact__wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}
.contact__info p {
  color: var(--text-60);
  margin-bottom: 26px;
}
.contact__channels {
  display: grid;
  gap: 14px;
}
.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
}
.contact__channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact__channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.contact__channel-icon.whats { background: #179b53; }
.contact__channel-icon.email { background: #0f5a43; }
.contact__channel-icon.loc { background: #8f2f28; }
.contact__channel strong { color: var(--text-100); display: block; margin-bottom: 2px; }
.contact__channel span { color: var(--text-60); }

.contact__form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
body.light-theme .contact__form { background: #ffffff; }
.contact__form h3 {
  margin-bottom: 22px;
  font-size: 1.7rem;
}
.field,
.field-row { margin-bottom: 16px; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-100);
  font-weight: 700;
  font-size: 0.92rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.05);
  color: var(--text-100);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field select option {
  background: var(--bg-card);
  color: var(--text-100);
}
body.light-theme .field input,
body.light-theme .field textarea,
body.light-theme .field select { background: #ffffff; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 208, 0, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 208, 0, 0.18);
}
.field textarea { resize: vertical; min-height: 140px; }
.form__note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-50);
  text-align: center;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 56px 24px 40px;
}
.footer__col--brand p {
  max-width: 340px;
  color: var(--text-60);
  margin: 14px 0 20px;
}
.footer__col h5 { margin-bottom: 16px; }
.footer__col a,
.footer__col p {
  display: block;
  color: var(--text-60);
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--primary); }
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 208, 0, 0.10);
  color: var(--primary);
}
.footer__social a:hover { transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0 28px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  color: var(--text-50);
  font-size: 0.92rem;
}

.whats-float,
.back-to-top {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 60;
  box-shadow: var(--shadow);
}
.whats-float {
  bottom: 24px;
  background: linear-gradient(135deg, #0f8f4b, #1db954);
}
.back-to-top {
  bottom: 96px;
  background: var(--grad-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.whats-float__ping {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(29,185,84,0.28);
  animation: ping 2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.32); opacity: 0; }
}

/* Cookie banner — card discreto no canto inferior esquerdo, entrada suave */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 70;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  max-width: 420px;
  background: var(--bg-card);
  color: var(--text-80);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.light-theme .cookie-banner {
  background: #ffffff;
  color: var(--text-70);
  border-color: var(--border);
}
.cookie-banner.hidden { display: none !important; }
.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-100);
  font-size: 0.9rem;
}
.cookie-banner p {
  color: var(--text-60);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 780px;
}
.cookie-banner .btn {
  flex: 0 0 auto;
  align-self: center;
}

/* ==== Responsive ==== */

@media (max-width: 1200px) {
  :root { --header-h: 96px; }
  .nav { gap: 4px; }
  .nav a { padding: 9px 12px; }
  .floating--1 { left: 8px; }
  .floating--2 { right: 8px; }
  .floating--3 { right: 12px; }
}

@media (max-width: 1120px) {
  .hero__inner,
  .about__inner,
  .contact__wrap,
  .faq__inner {
    grid-template-columns: 1fr;
  }
  .process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services__grid,
  .portfolio__grid,
  .pricing__grid,
  .testimonials__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__content { order: 1; }
  .hero__visual { order: 2; }
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    width: min(340px, calc(100vw - 48px));
    padding: 18px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a { width: 100%; }
  .hero { min-height: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .floating--1 { left: 16px; }
  .floating--2 { right: 16px; }
  .floating--3 { right: 22px; top: auto; bottom: 34%; }
  .about__photo img { aspect-ratio: 3 / 4; }
}

@media (max-width: 720px) {
  :root { --header-h: 78px; }
  .section { padding: 84px 0; }
  .hero { padding-top: calc(var(--header-h) + 42px); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .services__grid,
  .portfolio__grid,
  .pricing__grid,
  .testimonials__grid,
  .process__grid,
  .trustbar__inner,
  .footer__inner,
  .field-row { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .contact__form,
  .service-card,
  .testimonial,
  .price-card,
  .about__content,
  .process-step { padding: 24px; }
  .header__inner { gap: 12px; }
  .logo__text { font-size: 1.15rem; }
  .lang-toggle { display: none; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    bottom: 12px;
  }
  .cookie-banner .btn { width: 100%; }
  .whats-float,
  .back-to-top {
    width: 54px;
    height: 54px;
    right: 16px;
  }
  /* Voltar-ao-topo mais alto para não sobrepor o WhatsApp float */
  .back-to-top { bottom: 92px; }
  .whats-float { bottom: 20px; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .container { padding: 0 18px; }
  .hero__stats { grid-template-columns: 1fr; }
  .badge,
  .eyebrow,
  .breadcrumbs-mini { font-size: 0.74rem; }
  .floating {
    position: static;
    margin-top: 12px;
    animation: none;
  }
  .hero__card { display: grid; gap: 0; }
  .logo__text { font-size: 1.05rem; }
}

/* =============================================================
   TABELA COMPARATIVA DE PACOTES (Nova Pricing Table)
   ============================================================= */

.pricing-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: var(--text-80);
  font-size: 0.95rem;
}

.pricing-table thead th {
  padding: 26px 20px;
  text-align: center;
  vertical-align: top;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--text-100);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.pricing-table thead th:first-child {
  text-align: left;
  background: transparent;
}

.pricing-table thead th .plan-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 12px currentColor;
}
.pricing-table thead th.plan-basic   .plan-dot { background: #2ec27e; color: #2ec27e; }
.pricing-table thead th.plan-full    .plan-dot { background: #3b82f6; color: #3b82f6; }
.pricing-table thead th.plan-premium .plan-dot { background: #a78bfa; color: #a78bfa; }

.pricing-table thead th .plan-star {
  display: inline-block;
  margin-left: 6px;
  color: var(--accent);
  font-size: 1rem;
}

.pricing-table thead th .plan-tagline {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-body);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-60);
  letter-spacing: 0.01em;
}

.pricing-table tbody td {
  padding: 16px 20px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  color: var(--text-70);
}

.pricing-table tbody td:first-child {
  text-align: left;
  color: var(--text-90);
  font-weight: 500;
}

.pricing-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* Linha "Ideal para" e "Preço" com destaque */
.pricing-table tbody tr.row-ideal td {
  color: var(--text-70);
  padding-top: 20px;
  padding-bottom: 20px;
}
.pricing-table tbody tr.row-ideal td em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.pricing-table tbody tr.row-price td {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-100);
  padding: 20px 20px;
  background: rgba(255,255,255,0.02);
}
.pricing-table tbody tr.row-price td:first-child {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-90);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-cell-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pricing-table tbody tr.row-price del {
  color: #CBD5E1;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: line-through;
  margin-right: 6px;
  opacity: 0.9;
}

.pricing-table tbody tr.row-price .promo-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.65rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: rgba(255, 208, 0, 0.14);
  border: 1px solid rgba(255, 208, 0, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.35;
  margin-top: 4px;
  text-transform: none;
}

body.light-theme .pricing-table tbody tr.row-price .promo-price {
  color: #A87A00;
}
body.light-theme .promo-badge {
  color: #704F00;
  background: rgba(255, 208, 0, 0.22);
  border-color: rgba(168, 122, 0, 0.45);
}

/* Coluna destacada (Completo - meio) */
.pricing-table td.col-featured,
.pricing-table th.col-featured {
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.08), rgba(255, 255, 255, 0.03));
  border-left: 1px solid rgba(255, 208, 0, 0.30);
  border-right: 1px solid rgba(255, 208, 0, 0.30);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* Check e traço */
.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #22c55e;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}
.pricing-dash {
  display: inline-block;
  color: var(--text-40);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.6;
}

/* Linha de entrega em destaque */
.pricing-table tbody tr.row-delivery td {
  font-weight: 700;
  color: var(--text-90);
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(255,255,255,0.02);
}

/* CTA na tabela */
.pricing-table tbody tr.row-cta td {
  padding: 24px 16px;
  background: transparent;
}
.pricing-table .row-cta .btn {
  width: 100%;
  padding: 12px 18px;
  font-size: 0.9rem;
}

/* Título com ícone acima da tabela */
.pricing-table-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  margin-bottom: 8px;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--text-100);
  font-weight: 600;
}
.pricing-table-title i {
  color: var(--accent);
  font-size: 1.4rem;
}

/* Bloco Manutenção Mensal */
.maintenance-block {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: var(--shadow-sm);
}
.maintenance-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--text-100);
  font-weight: 600;
}
.maintenance-block__header i { color: var(--accent); }
.maintenance-block__header em {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-60);
  font-weight: 400;
  margin-left: 6px;
}
.maintenance-block__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 22px 24px;
  align-items: center;
}
.maintenance-block__service {
  color: var(--text-80);
  font-size: 1rem;
}
.maintenance-block__price {
  text-align: right;
  color: var(--text-100);
  font-weight: 700;
  font-family: var(--ff-display);
  font-size: 1.35rem;
}
.maintenance-block__price em {
  display: block;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 2px;
}

/* Bloco de garantia */
.guarantee-block {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 208, 0, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 208, 0, 0.28);
  color: var(--text-80);
  font-size: 0.95rem;
  line-height: 1.7;
}
.guarantee-block i.lock {
  color: var(--accent);
  margin-right: 6px;
}
.guarantee-block strong {
  color: var(--text-100);
}
.guarantee-block .br-flag {
  display: inline-block;
  background: rgba(255, 208, 0, 0.20);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 999px;
  margin: 0 4px;
  vertical-align: middle;
}
body.light-theme .guarantee-block .br-flag {
  background: rgba(168, 122, 0, 0.15);
  color: #704F00;
}

/* Responsivo — tabela em telas pequenas */
@media (max-width: 780px) {
  .pricing-table {
    font-size: 0.88rem;
  }
  .pricing-table thead th {
    font-size: 1.15rem;
    padding: 20px 12px;
  }
  .pricing-table tbody td {
    padding: 14px 12px;
  }
  .pricing-table tbody tr.row-price td {
    font-size: 1.3rem;
  }
  .maintenance-block__body {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .maintenance-block__price { text-align: left; }
  .pricing-table-title { font-size: 1.4rem; }
}

/* Light theme — ajustes para a tabela quando o toggle claro estiver ativo */
body.light-theme .pricing-table-wrapper,
body.light-theme .maintenance-block {
  background: #ffffff;
}
body.light-theme .pricing-table thead th { background: #f7f7f5; }
body.light-theme .pricing-table tbody tr.row-price td,
body.light-theme .pricing-table tbody tr.row-delivery td,
body.light-theme .maintenance-block__header { background: #fafaf8; }
body.light-theme .pricing-table td.col-featured,
body.light-theme .pricing-table th.col-featured {
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.08), rgba(255, 255, 255, 0.04));
}

