:root {
  --bg: #ffffff;
  --bg-elevated: #f9fafb;
  --bg-muted: #f3f4f6;
  --bg-soft: #e5e7eb;
  --primary: #facc15;
  --primary-soft: rgba(250, 204, 21, 0.12);
  --primary-dark: #eab308;
  --text: #111827;
  --text-muted: #6b7280;
  --border-subtle: #d1d5db;
  --accent: #22c55e;
  --danger: #ef4444;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.4);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.section-header-split .section-title-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0 0.5rem;
}

.section-header-split .section-title-big {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
}

.section-header-split .section-title-plus {
  color: #3b82f6;
}

.section-header-split .section-title-small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: #000000;
  border-bottom: 1px solid rgba(31, 41, 55, 0.75);
}

.header,
.header a {
  color: #f9fafb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), #22c55e);
  transition: width 0.16s ease-out;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  border-radius: var(--radius-pill);
  border: none;
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, color 0.12s ease-out;
}

.btn-lg {
  padding: 0.9rem 1.7rem;
  font-size: 1rem;
}

.btn-hero-choose {
  padding: 0.7rem 1.35rem;
  font-size: 0.92rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.header .btn-sm {
  padding: 0.4rem 0.95rem;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
}

.btn-confirm-encomenda {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.74rem;
  animation: pulse-cta 1.6s ease-in-out infinite;
}
.btn-confirm-encomenda .btn-main {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.btn-confirm-encomenda .btn-sub {
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.95;
}

@keyframes pulse-cta {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(250, 204, 21, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  }
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(250, 204, 21, 0.9);
  background: rgba(15, 23, 42, 0.98);
}

.btn {
  background: radial-gradient(circle at 10% 0, #fff 0, #facc15 20%, #eab308 40%, #854d0e 100%);
  color: #111827;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
  background: radial-gradient(circle at 10% 0, #fff 0, #fde047 22%, #facc15 40%, #a16207 100%);
}

.btn-link {
  background: transparent;
  border-radius: 999px;
  padding: 0.55rem 0.2rem;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-link:hover {
  color: var(--text);
}

.hero {
  padding-top: 4.5rem;
  padding-bottom: 0.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 3.3vw, 3.2rem);
  letter-spacing: -0.06em;
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.badge {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.badge-title {
  font-size: 0.8rem;
}

.badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-card {
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}

.hero-image-wrap {
  background: #f3f4f6;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.hero-image-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-swipe {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-swipe-hint {
  margin: 0.6rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-swipe-hint::before {
  content: "↔";
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.6rem;
  background: rgba(243, 244, 246, 0.9);
  border-left: 1px solid rgba(209, 213, 219, 0.9);
}

.hero-thumb {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.hero-thumb:hover,
.hero-thumb.active {
  border-color: rgba(250, 204, 21, 0.9);
  background: #fffbeb;
}

.hero-product-img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.hero-swipe {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-swipe:active {
  cursor: grabbing;
}

.gallery-strip {
  margin-top: 1rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 3px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 3px;
}

.gallery-track::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.8);
}

.gallery-item {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
}

.gallery-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-subtle);
  display: block;
}

.gallery-hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Antes e Depois */
.ba-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 41, 55, 0.9);
  user-select: none;
  -webkit-user-select: none;
  cursor: col-resize;
}

.ba-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.ba-img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-depois {
  display: block;
}

.ba-antes-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

/* Largura da imagem "antes" é definida em JS (igual ao container) para não redimensionar ao arrastar */
.ba-antes-wrap .ba-antes {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  margin-left: -12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  pointer-events: auto;
}

.ba-handle-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
}

.ba-handle-grip {
  position: relative;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  cursor: col-resize;
}

.ba-grip-bar {
  display: block;
  width: 14px;
  height: 2px;
  background: #0d0d0d;
  border-radius: 1px;
}

.ba-labels {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 0.75rem;
  z-index: 4;
  pointer-events: none;
}

.ba-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.ba-hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.color-picker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
  flex-wrap: wrap;
}

.color-picker-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.color-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.color-btn img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.color-btn span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.color-btn:hover,
.color-btn.active {
  border-color: rgba(250, 204, 21, 0.9);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.3);
}

.color-btn.active span {
  color: var(--primary);
}

.color-picker-inline {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.color-btn-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.color-btn-inline img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.color-btn-inline span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.color-btn-inline:hover,
.color-btn-inline.active {
  border-color: rgba(250, 204, 21, 0.9);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.3);
}

.color-btn-inline.active span {
  color: var(--primary);
}

.form-field-colors {
  grid-column: 1 / -1;
}

.form-field-colors label {
  margin-bottom: 0.4rem;
  display: block;
}

.hero-card-footer {
  padding: 1.3rem 1.4rem 1.4rem;
}

.hero-card-footer p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 1.35rem 1.5rem 1.4rem;
}

.card-benefit h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.card-benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.list-dashed {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.list-dashed li {
  position: relative;
  padding-left: 1rem;
}

.list-dashed li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(148, 163, 184, 0.9);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pillars-row {
  display: flex;
  gap: 0.9rem;
}

.pillar {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  background: #f9fafb;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.pillar-title {
  display: block;
  font-size: 0.9rem;
}

.pillar-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spec-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #778379;
  padding: 1.6rem 1.6rem 1.5rem;
}

.spec-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: #778379;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #374151;
  font-size: 0.9rem;
}

.spec-list strong {
  color: #778379;
}

.spec-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.spec-note strong {
  color: #778379;
}

.kit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.kit-options h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.kit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.kit-card {
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
}

.kit-card-primary {
  border-color: rgba(250, 204, 21, 0.8);
  background: #fffbeb;
}

.kit-card-outline {
  background: #f9fafb;
}

.kit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  background: #e5e7eb;
}

.kit-pill-primary {
  color: #0f172a;
  background: var(--primary);
}

.kit-card h4 {
  margin: 0.6rem 0 0.4rem;
  font-size: 0.95rem;
}

.kit-small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.kit-price-block {
  margin: 0.4rem 0 0;
}

.kit-price-from {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.kit-price {
  margin: 0.15rem 0 0.1rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: #22c55e;
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
}

.kit-installments {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.kit-note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.kit-card-primary .kit-price {
  color: #22c55e;
}

.kit-highlight {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.kit-highlight span {
  display: block;
}

.kit-form {
  margin-top: 0.4rem;
}

.kit-form h4 {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-field select {
  border-radius: 10px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  padding: 0.5rem 0.7rem;
}

.form-field select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.kit-summary {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.summary-card {
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.summary-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.summary-tag {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  color: var(--accent);
}

.summary-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-slider-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  margin: 0 -0.5rem;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-slider-wrap::-webkit-scrollbar {
  display: none;
}

.reviews-slider-wrap:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  min-width: 200%;
  user-select: none;
  -webkit-user-select: none;
}

.reviews-track .review-card {
  flex: 0 0 300px;
  min-width: 260px;
  font-size: 0.9rem;
}

.review-card {
  font-size: 0.9rem;
  overflow: hidden;
}

.review-image-wrap {
  margin: -1.35rem -1.5rem 0.6rem -1.5rem;
  width: calc(100% + 3rem);
  height: 140px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.review-name {
  margin: 0;
  font-weight: 500;
}

.review-tag {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  margin: 0;
  font-size: 0.85rem;
  color: var(--primary);
}

.review-text {
  margin: 0;
  color: var(--text-muted);
}

.reviews-summary {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Exit intent: cupom 10% OFF */
body.no-scroll {
  overflow: hidden;
}

.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.exit-intent-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.exit-intent-modal {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(250, 204, 21, 0.6);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.8rem 1.6rem;
  color: #111827;
}

.exit-intent-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.3rem;
  cursor: pointer;
}

.exit-intent-tag {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22c55e;
}

.exit-intent-title {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  color: #111827;
}

.exit-intent-text {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.exit-intent-price {
  display: inline-block;
  margin: 0 0.15rem;
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #22c55e;
}

.exit-intent-coupon {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px dashed rgba(209, 213, 219, 0.9);
  margin-bottom: 0.9rem;
}

.exit-intent-code {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: #111827;
}

.exit-intent-code-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.exit-intent-cta {
  margin-top: 0.2rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  animation: pulse-cta 1.8s ease-in-out infinite;
}

.exit-intent-note {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  margin-top: 2rem;
  background: #000000;
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.8rem 1.5rem 1.8rem;
}

.footer-brand p {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-cols {
  display: flex;
  gap: 2.5rem;
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
}

.footer-col p {
  margin: 0.15rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.8rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .two-column,
  .kit-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-media {
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-track .review-card {
    min-width: 240px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-cols {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 0.3rem;
  }

  .nav {
    display: none;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kit-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-track .review-card {
    min-width: 220px;
  }

  .footer-cols {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

