/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
img { max-width: 100%; height: auto; }

/* ── DESIGN SYSTEM ── */
:root {
  --dark:       #0b1c2a;
  --dark-deep:  #07131e;
  --green:      #ef009c;
  --green-alt:  #f536b3;
  --pink:       #e91e8c;
  --orange:     #ff6b35;
  --teal:       #0d9488;
  --purple:     #7c3aed;
  --indigo:     #3f51b5;
  --gray-bg:    #f0f2f5;
  --white:      #ffffff;
  --text:       #0b1c2a;
  --text-muted: #555555;
  --font-d: 'Rajdhani', sans-serif;
  --font-b: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-b);
  background: var(--dark);
  padding-top: 80px;
  overflow-x: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeUp .55s ease forwards; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .35s; }
.anim-d4 { animation-delay: .5s; }
.h-anim   { animation: fadeUp .7s ease both; }
.h-anim-1 { animation: fadeUp .7s .1s ease both; }
.h-anim-2 { animation: fadeUp .7s .22s ease both; }
.h-anim-3 { animation: fadeUp .7s .38s ease both; }
.h-anim-4 { animation: fadeUp .7s .55s ease both; }

/* ── HEADER ── */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  background: #170425;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav-header.scrolled {
  background: rgba(23,4,37,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img { height: 50px; width: auto; display: block; }
.logo-fb  { display: none; align-items: center; gap: 8px; }
.logo-icon {
  display: flex; flex-direction: column;
  background: var(--green); border-radius: 4px;
  padding: 3px 6px; line-height: 1.15;
}
.logo-icon span { font-size: 8.5px; font-weight: 900; color: #fff; letter-spacing: .04em; text-transform: uppercase; }
.logo-div  { color: rgba(255,255,255,.25); font-size: 22px; font-weight: 200; margin: 0 2px; }
.logo-text { font-family: var(--font-d); font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.logo-text b { color: var(--green); font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: #c8d8e4; font-size: 14px; font-weight: 500;
  text-decoration: none; white-space: nowrap; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--green) !important; color: #fff !important;
  font-weight: 700 !important; padding: 10px 22px !important;
  border-radius: 999px; font-size: 14px; transition: background .2s !important;
}
.nav-cta:hover { background: #ff20a8 !important; }
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { padding: 0 16px; }
  .logo-img { height: 40px; }
  .nav-links a { font-size: 10px; }
  .nav-cta { font-size: 10px !important; padding: 7px 15px !important; }
  .br-desk { display: none; }
}

/* ── HERO ── */
.hero-wrap {
  width: 100%;
  background-color: var(--dark);
  background-image: linear-gradient(to bottom, rgba(124,17,128,.92) 0%, rgba(21,0,32,.85) 100%), url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center -20%;
  padding: 60px 24px 90px;
  display: flex; justify-content: center;
}
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1100px; width: 100%;
}
.hero-left { color: #fff; }
.badge {
  display: inline-block;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.35);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 24px; letter-spacing: .01em;
}
.hero-left h1 {
  font-family: var(--font-d);
  font-size: clamp(31px, 4.2vw, 48px);
  font-weight: 900; line-height: 1.12;
  color: #fff; margin-bottom: 16px;
}
.hero-left h1 em { font-style: normal; color: #fff; }
.hero-sub {
  font-family: var(--font-d);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700; color: #fff;
  line-height: 1.4; margin-bottom: 16px;
}
.hero-body {
  font-size: 14px; color: #fff;
  line-height: 1.75; margin-bottom: 32px; max-width: 460px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid #fff; color: #fff;
  font-size: 14px; font-weight: 700; font-family: var(--font-b);
  padding: 14px 24px; border-radius: 999px;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--green); border-color: var(--green); color: #fff; }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  border: 2px solid var(--green);
  font-size: 14px; font-weight: 700; font-family: var(--font-b);
  padding: 12px 22px; border-radius: 999px;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-green:hover { background: transparent; color: var(--green); }

/* hero right */
.hero-right { position: relative; }
.hero-universe-img {
  width: 100%; border-radius: 16px; display: block;
}
.browser {
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45);
  position: relative; z-index: 1;
}
.browser-bar {
  background: #f0f2f5; padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-body { padding: 16px 18px 18px; }
.chart-ttl {
  font-size: 9px; font-weight: 700; color: #888;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px;
}
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.bar-logo { width: 64px; text-align: right; flex-shrink: 0; }
.bar-logo img { height: 16px; max-width: 64px; object-fit: contain; vertical-align: middle; }
.bar-logo .bn { font-size: 9px; font-weight: 700; color: #333; white-space: nowrap; }
.bar-track { flex: 1; background: #f1f3f5; border-radius: 4px; height: 14px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 4px; }
.bar-pct   { font-size: 9px; font-weight: 700; color: #333; width: 30px; flex-shrink: 0; text-align: right; }
.stores-sep { border: none; border-top: 1px solid #eee; margin: 14px 0 10px; }
.stores-ttl {
  font-size: 9px; font-weight: 700; color: #888;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px;
}
.stores-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.store-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.store-dot  { width: 8px; height: 8px; border-radius: 50%; }
.store-nm   { font-size: 8px; font-weight: 700; color: #555; text-align: center; line-height: 1.3; }

.beauty-circle {
  position: absolute; right: -36px; top: 50%; transform: translateY(-60%);
  width: 130px; height: 130px; border-radius: 50%;
  border: 3px solid var(--green); background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.35); z-index: 2;
  font-size: 62px; line-height: 1;
}
.insight-badge {
  position: absolute; bottom: -20px; right: 12px; left: 40px;
  background: var(--green); border-radius: 12px;
  padding: 10px 14px; display: flex; align-items: flex-start; gap: 10px;
  z-index: 3; box-shadow: 0 4px 20px rgba(239,0,156,.4);
}
.insight-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.insight-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 2px;
}
.insight-txt { font-size: 11px; font-weight: 700; color: #fff; line-height: 1.3; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left h1 { font-size: 40px; }
}

/* ── SECTION COMMON ── */
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900; color: var(--text); line-height: 1.15;
  margin-bottom: 14px;
}
.sec-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── METODOLOGIA ── */
.dobra-met {
  width: 100%; background: var(--gray-bg);
  padding: 64px 24px 72px;
  display: flex; justify-content: center;
}
.met-inner {
  display: flex; flex-direction: column;
  gap: 15px;
  max-width: 1100px; width: 100%;
}
.met-cols {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: start; width: 100%;
}
.met-footer { display: flex; justify-content: center; width: 100%; }
.met-title {
  font-family: var(--font-d);
  font-size: clamp(29px, 3.6vw, 43px);
  font-weight: 900; color: #3b0764; line-height: 1.15; margin-bottom: 16px;
}
.met-desc { font-size: 14px; color: var(--text); font-weight: 400; line-height: 1.75; margin-bottom: 0; margin-top: 0; }
.met-desc + .met-desc { margin-top: 16px; }
.met-desc strong { font-weight: 800; }
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stats-row-4 { grid-template-columns: repeat(2, 1fr); }
.stat-box { border: 1.5px solid #d8dde3; border-radius: 12px; padding: 16px 14px; background: #fff; display: flex; align-items: center; gap: 12px; }
.stat-icon-wrap { width: 64px; height: 64px; background: #ede0f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon { width: 38px; height: 38px; filter: brightness(0) saturate(100%) invert(10%) sepia(80%) saturate(3000%) hue-rotate(270deg) brightness(90%) contrast(110%); }
.s-value { font-family: var(--font-d); font-size: 38px; font-weight: 900; color: #3b0764; line-height: 1; margin-bottom: 2px; }
.s-unit  { font-size: 20px; font-weight: 700; }
.s-label { font-size: 13px; color: #888; line-height: 1.1; }
.br-desk { display: block; }
.met-universe-img {
  width: 100%; border-radius: 16px;
  display: block;
}
.met-chart-wrap {
  background: #fff; border: 1.5px solid #d8dde3;
  border-radius: 12px; padding: 20px 20px 10px; overflow: hidden;
}
.dobra-met .btn-green,
.dobra3 .btn-green { background: #3b0764; border-color: #3b0764; }
.dobra-met .btn-green:hover,
.dobra3 .btn-green:hover { background: transparent; color: #3b0764; }
.met-chart-title { font-family: var(--font-b); font-size: 11px; font-weight: 500; color: #bbb; margin-bottom: 20px; }
.logos-group-label { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: #3b0764; margin-bottom: 14px; }

/* logos em círculos */
.logos-group { margin-bottom: 0; }
.logos-row {
  display: flex; gap: 8px; justify-content: space-between;
  margin-bottom: 20px;
}
.logo-pill {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1;
}
.logo-plain {
  height: 40px; max-width: 100%;
  object-fit: contain; display: block;
}
.logos-divider { border: none; border-top: 1px solid #eee; margin: 24px 0 40px; }
.fonte { font-size: 11px; color: #aaa; margin-top: 10px; }
@media (max-width: 860px) {
  .met-cols { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

/* ── RECORTE ── */
.dobra-recorte {
  width: 100%; background: #170425;
  padding: 72px 24px 80px;
  display: flex; justify-content: center;
}
.recorte-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  max-width: 1100px; width: 100%;
}
.recorte-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900; color: var(--green); line-height: 1.2; margin-bottom: 20px;
}
.recorte-desc { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.75; }
.recorte-desc + .recorte-desc { margin-top: 16px; }
.recorte-desc strong { color: #fff; font-weight: 700; }
.recorte-stats { display: flex; flex-direction: row; gap: 12px; margin-top: 28px; }
.recorte-stat-box {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid rgba(255,255,255,.12); border-radius: 12px;
  padding: 14px 16px; background: rgba(255,255,255,.05);
}
.recorte-stat-icon-wrap {
  width: 60px; height: 60px; background: rgba(255,255,255,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.recorte-stat-icon { width: 30px; height: 30px; filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(5000%) hue-rotate(310deg) brightness(105%) contrast(105%); opacity: .6; }
.recorte-stat-value {
  font-family: var(--font-d); font-size: 28px; font-weight: 900;
  color: #fff; line-height: 1;
}
.recorte-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 1px; }
.recorte-img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
@media (max-width: 860px) {
  .dobra-recorte { padding: 48px 20px 56px; }
  .recorte-inner { grid-template-columns: 1fr; gap: 32px; }
  .recorte-img { order: -1; }
  .recorte-title { font-size: clamp(32px, 8.5vw, 44px); }
  .recorte-stats { flex-direction: column; gap: 10px; }
  .recorte-stat-box { padding: 12px 14px; }
  .recorte-stat-icon-wrap { width: 48px; height: 48px; flex-shrink: 0; }
  .recorte-stat-icon { width: 24px; height: 24px; }
  .recorte-stat-value { font-size: 24px; }
}

/* ── HISTÓRICO DE PREÇO ── */
.dobra-preco {
  width: 100%; background: var(--gray-bg);
  padding: 72px 24px 80px;
  display: flex; flex-direction: column; align-items: center;
}
.preco-header { text-align: center; max-width: 1100px; width: 100%; margin-bottom: 40px; }
.preco-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.4vw, 41px);
  font-weight: 900; color: #3b0764; line-height: 1.2; margin-bottom: 12px;
}
.preco-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.preco-sub strong { color: var(--text); }
.preco-sub em { font-style: normal; color: var(--green); font-weight: 600; }
.preco-frame {
  max-width: 1100px; width: 100%;
  border: 1.5px solid #e4e8ec; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); min-height: 530px;
}
.preco-frame iframe { width: 100%; height: 530px; border: none; display: block; }
@media (max-width: 860px) {
  .preco-frame { min-height: 680px; }
  .preco-frame iframe { height: 680px; }
}

/* ── INSIGHTS + RANKING ── */
.dobra2 {
  width: 100%; background: var(--white);
  padding: 72px 24px 80px;
  display: flex; justify-content: center;
}
.dobra2-inner {
  display: flex; flex-direction: column;
  gap: 32px; max-width: 1100px; width: 100%;
}
.dobra2-header { width: 100%; }
.dobra2-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 40px; align-items: stretch;
}
.dobra2-widget { display: flex; flex-direction: column; }
.dobra2-widget .widget-frame { flex: 1; }
.dobra2-insights { display: flex; flex-direction: column; gap: 16px; }
.dobra2-footer {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 40px; align-items: center; margin-top: 16px;
}
.dobra2-footer .btn-green { display: flex; justify-content: center; }
.insight-cluster-header { display: flex; flex-direction: column; gap: 12px; }
.insight-cluster-title { font-family: var(--font-d); font-size: 26px; font-weight: 800; color: var(--green); line-height: 1.2; }
.insight-card {
  border: 1.5px solid #e4e8ec; border-radius: 14px;
  padding: 20px 18px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.insight-card:hover { border-color: var(--green); box-shadow: 0 4px 18px rgba(239,0,156,.1); }
.insight-card-title { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.insight-card-body  { font-size: 13px; color: #333; line-height: 1.65; }
.insight-card-body strong { color: inherit; font-weight: 700; }
.insight-card-body em     { font-style: normal; color: inherit; font-weight: 600; }
.d2-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900; color: var(--green); line-height: 1.2; margin-bottom: 14px;
}
.d2-desc { font-size: 14px; color: #444; line-height: 1.75; margin-bottom: 0; }
.d2-desc strong { color: inherit; }
.widget-head { margin-bottom: 16px; }
.widget-title { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.widget-sub   { font-size: 13px; color: #666; line-height: 1.5; }
.widget-frame {
  background: #fff; border-radius: 16px;
  padding: 24px; border: 1.5px solid #e4e8ec; box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
#rnk-chart .rnk-row { display: flex; align-items: center; min-height: 50px; padding: 5px 0; }
#rnk-chart .rnk-logo {
  width: 110px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 14px; padding-left: 8px;
}
#rnk-chart .rnk-logo img { max-width: 94px; max-height: 36px; object-fit: contain; display: block; }
#rnk-chart .rnk-bar-cell { flex: 1; display: flex; align-items: center; gap: 9px; padding-right: 12px; }
#rnk-chart .rnk-fill { height: 36px; border-radius: 4px; flex-shrink: 0; min-width: 6px; transition: width .35s ease; }
#rnk-chart .rnk-val  { font-family: var(--font-b); font-size: 14px; font-weight: 800; color: #333; white-space: nowrap; }
@media (max-width: 900px) {
  .dobra2-grid   { grid-template-columns: 1fr; }
  .dobra2-footer { grid-template-columns: 1fr; }
}

/* ── FUNCIONALIDADES ── */
.dobra3 {
  width: 100%; background: var(--white);
  padding: 72px 24px 80px;
  display: flex; flex-direction: column; align-items: center;
}
.d3-header { text-align: center; max-width: 1100px; width: 100%; margin-bottom: 48px; }
.d3-title { font-family: var(--font-d); font-size: clamp(24px, 3.1vw, 36px); font-weight: 900; color: #3b0764; margin-bottom: 10px; line-height: 1.2; }
.d3-sub   { font-size: 14px; color: var(--text-muted); }
.d3-sub strong { color: inherit; }
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; width: 100%; margin-bottom: 48px;
}
.feat {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  border: 1.5px solid #e8eaed; transition: box-shadow .2s, border-color .2s;
}
.feat:hover { border-color: #f9c0e8; box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.feat-tag  { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.feat-name { font-family: var(--font-d); font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.25; }
.feat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.feat-desc strong { color: var(--text); font-weight: 700; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ── CATEGORIAS BEAUTY ── */
.cat-section { margin-top: 24px; }
.cat-label { font-family: var(--font-d); font-size: 24px; font-weight: 700; color: #3b0764; margin-bottom: 12px; }
.cat-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(237,224,247,.45); color: #3b0764;
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  border: 1.5px solid rgba(212,184,240,.5);
  opacity: .85;
}

.d3-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--text); color: var(--text);
  font-size: 13.5px; font-weight: 700; font-family: var(--font-b);
  padding: 13px 26px; border-radius: 999px;
  text-decoration: none; background: #fff; transition: background .2s, color .2s;
}
.d3-pill:hover { background: transparent; color: var(--text); }
#cta-pg-lp-segmento-mercado-shampoo-api:hover { background: transparent !important; color: #3b0764 !important; }

/* ── CONTATO ── */
.dobra-contato {
  width: 100%; background: #170425;
  padding: 80px 24px 100px;
  display: flex; justify-content: center;
}
.contato-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1100px; width: 100%;
}
.contato-title {
  font-family: var(--font-d);
  font-size: clamp(29px, 3.8vw, 46px);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 28px;
}
.contato-title em { font-style: normal; color: var(--green); }
.contato-bullets { list-style: none; margin-bottom: 28px; }
.contato-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: #c8d8e4; margin-bottom: 2px; line-height: 1.55;
}
.contato-bullets li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.contato-bullets li em { font-style: normal; color: var(--green); font-weight: 600; }
.contato-disc { font-size: 12px; color: rgba(255,255,255,.38); font-style: italic; line-height: 1.7; }
.contato-disc + .contato-disc { margin-top: 16px; }
.contato-card {
  background: #fff; border: none;
  border-radius: 16px; padding: 32px 28px 36px;
}
.contato-card-title { font-family: var(--font-d); font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.contato-card-sub   { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
#rd-form { min-height: 260px; }
@media (max-width: 860px) { .contato-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── FOOTER ── */
.site-footer {
  width: 100%; background: #0f011a;
  padding: 24px;
  display: flex; justify-content: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1100px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.footer-logo { text-decoration: none; }
.footer-logo img { height: 32px; width: auto; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.38); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }

@media (max-width: 768px) {
  .btn-outline, .btn-green { font-size: 12px; display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .badge { font-size: 12px; }
  .hero-wrap     { padding: 40px 24px 50px; }
  .dobra-met     { padding: 40px 24px 48px; }
  .dobra-preco   { padding: 40px 24px 48px; }
  .dobra2        { padding: 40px 24px 48px; }
  .dobra3        { padding: 40px 24px 48px; }
  .dobra-contato { padding: 48px 24px 60px; }
  .logo-circle { width: 52px; height: 52px; }
  .logos-row { gap: 4px; }
}

/* ── TIPOGRAFIA MOBILE — PADRONIZAÇÃO ── */
@media (max-width: 860px) {
  .met-title,
  .preco-title,
  .d2-title,
  .d3-title,
  .contato-title,
  .recorte-title { font-size: clamp(32px, 8.5vw, 44px); }

  .met-desc,
  .preco-sub,
  .d2-desc,
  .d3-sub,
  .recorte-desc,
  .contato-bullets li { font-size: 15px; line-height: 1.75; }
}
