/* ============================================================
   ATLAS VISUAL DE ECG — PÁGINA DE VENDAS
   Estilos CSS — Identidade Visual Médica & Clínica Premium
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* ============================================================
   Design System & Paleta de Cores (Atlas Visual de ECG):
   • Azul-marinho profundo: #0B1F33
   • Azul clínico: #146C94
   • Ciano elétrico: #19B5D8
   • Branco: #FFFFFF
   • Cinza muito claro: #F4F7F9
   • Vermelho de destaque para traçados/alertas/CTAs: #E53935
   ============================================================ */

:root {
  /* Surfaces & Backgrounds */
  --off-white: #F4F7F9;
  --cream: #EBF2F7;
  --cream-2: #E1ECF2;
  --cream-3: #D2E3ED;
  --paper: #FFFFFF;
  --paper-soft: #F9FBFD;

  /* Medical & Deep Tones */
  --navy: #0B1F33;
  --navy-deep: #061321;
  --petroleum: #0B1F33;

  /* Clinical Blue & Electric Cyan System */
  --blue-clinical: #146C94;
  --cyan-electric: #19B5D8;
  --cyan-light: #52CAE6;
  --cyan-soft: #E6F7FA;
  --cyan-glow: rgba(25, 181, 216, 0.35);
  --border-cyan: rgba(25, 181, 216, 0.4);

  /* Highlight & Alert Red */
  --red-accent: #E53935;
  --red-hover: #D32F2F;
  --red-glow: rgba(229, 57, 53, 0.42);
  --red-light: #FFEBEE;

  /* Color mapping for elements */
  --purple: #146C94;
  --purple-brand: #146C94;
  --purple-light: #19B5D8;
  --purple-deep: #0B1F33;
  --purple-mystic: #0B1F33;
  --purple-glow: rgba(25, 181, 216, 0.35);
  --purple-soft: #E6F7FA;
  --border-purple: rgba(25, 181, 216, 0.3);
  --gold: #19B5D8;
  --gold-hover: #146C94;
  --gold-glow: rgba(229, 57, 53, 0.38);

  /* Ink & Typography */
  --ink: #0B1F33;
  --muted: #4A607A;

  /* CTA & Actions */
  --cta: #E53935;
  --cta-hover: #D32F2F;
  --cta-glow: rgba(229, 57, 53, 0.42);

  /* Status & Accents */
  --green: #10B981;
  --green-deep: #059669;
  --green-glow: rgba(16, 185, 129, 0.35);
  --amber: #E53935;
  --border: #D2E3ED;
  --border-gold: rgba(25, 181, 216, 0.35);

  /* Type */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* Shape */
  --r-sm: 14px;
  --r: 20px;
  --r-lg: 30px;
  --pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(11, 31, 51, 0.06);
  --sh: 0 10px 30px -12px rgba(11, 31, 51, 0.15);
  --sh-lg: 0 28px 60px -22px rgba(11, 31, 51, 0.24);
  --sh-card: 0 12px 32px -16px rgba(11, 31, 51, 0.14);
  --sh-gold: 0 12px 30px -10px rgba(229, 57, 53, 0.3);

  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  text-wrap: pretty;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

section {
  position: relative;
}

/* ============================================================
   PLACEHOLDERS DE IMAGEM
   ============================================================ */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6F7FA 0%, #D2E3ED 100%);
  border: 2px dashed #146C94;
  border-radius: var(--r);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(20, 108, 148, 0.08);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.img-placeholder:hover {
  border-color: #19B5D8;
  box-shadow: inset 0 0 25px rgba(25, 181, 216, 0.12), 0 12px 30px -10px rgba(25, 181, 216, 0.3);
}

.img-placeholder .ph-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  color: #146C94;
  opacity: 0.9;
}

.img-placeholder .ph-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #146C94;
  padding: 6px 16px;
  border-radius: var(--pill);
  box-shadow: 0 4px 12px rgba(11, 31, 51, 0.15);
  border: 1px solid #19B5D8;
}

.img-placeholder .ph-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

.ph-hero { aspect-ratio: 16/10; min-height: 260px; }
.ph-solution { aspect-ratio: 16/9; min-height: 240px; }
.ph-card { aspect-ratio: 1/1; min-height: 180px; }
.ph-gallery { aspect-ratio: 1000/1413; min-height: 280px; }
.ph-photo { aspect-ratio: 1122/1402; min-height: 280px; }
.ph-bonus { aspect-ratio: 4/3; min-height: 200px; }
.ph-bundle { aspect-ratio: 16/9; min-height: 260px; }
.ph-seal { aspect-ratio: 1/1; width: 220px; height: 220px; border-radius: 50%; }

/* ============================================================
   BUTTONS & CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.15;
  text-align: center;
  padding: 20px 38px;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  background: linear-gradient(135deg, #EF5350 0%, #E53935 50%, #D32F2F 100%);
  color: #FFFFFF;
  box-shadow: 0 12px 28px -8px var(--red-glow), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.18s cubic-bezier(0.3, 1.4, 0.5, 1), box-shadow 0.18s, filter 0.18s;
  position: relative;
  text-wrap: balance;
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 20px 38px -10px var(--red-glow), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn .arr {
  font-size: 1.1em;
  transform: translateX(0);
  transition: transform 0.2s;
}

.btn:hover .arr {
  transform: translateX(4px);
}

.btn--lg { padding: 24px 46px; }
.btn--block { display: flex; width: 100%; }

.btn--ghost {
  background: var(--paper-soft);
  color: var(--navy);
  box-shadow: inset 0 0 0 2.5px var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: #FFFFFF;
  box-shadow: 0 14px 28px -10px rgba(11, 31, 51, 0.3);
}

.btn-pulse {
  animation: pulse-red 2.6s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 12px 28px -8px var(--red-glow), inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 var(--red-glow);
  }
  50% {
    box-shadow: 0 12px 28px -8px var(--red-glow), inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 0 0 16px rgba(229, 57, 53, 0);
  }
}

.check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00C853;
  display: grid;
  place-items: center;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.4);
}

.check svg {
  width: 14px;
  height: 14px;
  stroke: #FFFFFF;
  stroke-width: 3.5;
}

/* ============================================================
   1 · TOP OFFER BAR
   ============================================================ */
.offerbar {
  background: linear-gradient(90deg, #0B1F33 0%, #146C94 50%, #0B1F33 100%);
  color: #FFFFFF;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 15px;
  padding: 11px 16px;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(25, 181, 216, 0.4);
}

.offerbar b {
  color: #19B5D8;
  font-weight: 700;
}

/* ============================================================
   2 · HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(180deg, #E6F7FA 0%, var(--off-white) 100%);
  padding: 50px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #E6F7FA;
  color: #146C94;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 6px 15px;
  border-radius: var(--pill);
  box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(25, 181, 216, 0.35);
}

.badge-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #19B5D8;
  box-shadow: 0 0 0 3px rgba(25, 181, 216, 0.35);
}

.hero h1 ,.hero-title {
  text-wrap: balance;
  max-width: 28ch;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px auto 20px;
  max-width: 24ch;
  color: var(--navy);
  text-wrap: balance;
}

.hero h1 .hl {
  color: #146C94;
  display: inline;
  border-bottom: none;
  padding-bottom: 0;
}

.hero .lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.hero-art {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-art img.hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(10, 25, 47, 0.22));
  border-radius: var(--r-md);
  transition: transform 0.3s ease;
}

.hero-art img.hero-img:hover {
  transform: translateY(-4px);
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.hero-copy > .btn {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}

.delivery .ico span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--paper);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}

.delivery .ico svg {
  width: 17px;
  height: 17px;
  stroke: var(--navy);
}

/* ============================================================
   SECTIONS SCAFFOLD
   ============================================================ */
.sec {
  padding: 78px 0;
  background: var(--off-white);
}

.sec--cream2 {
  background: var(--cream-2);
}

.sec--purple-soft {
  background: linear-gradient(180deg, rgba(107, 47, 167, 0.035) 0%, rgba(91, 44, 142, 0.02) 100%);
  border-top: 1px solid rgba(107, 47, 167, 0.08);
  border-bottom: 1px solid rgba(107, 47, 167, 0.08);
}

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.sec-head h2 {
  font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 600;
  color: var(--navy);
  text-wrap: balance;
}

.sec-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 18px;
}

/* ============================================================
   3 · ACTIVITY GALLERY (MARQUEE 1)
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee--mt { margin-top: 24px; }

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee-right 44s linear infinite;
}

.marquee-track.is-reverse { animation-direction: reverse; }
.marquee-track.is-fast { animation-duration: 14s !important; }
.marquee:hover .marquee-track { animation-play-state: paused; }

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

.gal-card {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 360px);
  aspect-ratio: 1000 / 1413;
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: var(--sh-card);
  overflow: hidden;
  border: 1.5px solid rgba(20, 108, 148, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gal-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-lg);
  border-color: #19B5D8;
}

.gal-card:hover img {
  transform: scale(1.04);
}

.photo-card {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 360px);
  aspect-ratio: 1000 / 1413;
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: var(--sh-card);
  overflow: hidden;
  border: 1.5px solid rgba(20, 108, 148, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-lg);
  border-color: #19B5D8;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.navbtn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  cursor: pointer;
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--sh-sm);
  display: grid;
  place-items: center;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.navbtn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: scale(1.06);
}

.navbtn svg { width: 20px; height: 20px; }

.marquee-ctrl {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

/* ============================================================
   4 · FEATURE CARDS (ICON GRID)
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--sh-card);
  text-align: center;
  border: 1.5px solid rgba(107, 47, 167, 0.18);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: #146C94;
  box-shadow: 0 16px 36px -12px rgba(20, 108, 148, 0.25);
}

.feat-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(20, 108, 148, 0.08);
  border: 1.5px solid rgba(20, 108, 148, 0.2);
  color: #146C94;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.feat-ico svg { width: 32px; height: 32px; stroke: currentColor; }

.feat-card:hover .feat-ico {
  background: rgba(25, 181, 216, 0.18);
  border-color: #19B5D8;
  color: #146C94;
}

.feat-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 9px;
  color: var(--navy);
}

.feat-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.feat-close {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   5 · BENEFITS BLOCK
   ============================================================ */
.benefit-block {
  background: linear-gradient(155deg, #0B1F33 0%, #146C94 100%);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 68px);
  color: #FFFFFF;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 2px solid #19B5D8;
}

.benefit-block h2 {
  color: #FFFFFF;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  max-width: 24ch;
  margin: 0 auto;
  position: relative;
}

.benefit-block .blist {
  list-style: none;
  padding: 0;
  margin: 34px auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 38px;
  max-width: 880px;
  position: relative;
  text-align: left;
}

.benefit-block .blist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  border-radius: var(--r-sm);
  color: #FFFFFF;
}

.benefit-block .blist li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 60%;
  margin: 0 auto;
}

/* ============================================================
   6 · PHOTO STRIP (AUTO-SCROLL MARQUEE 2)
   ============================================================ */
.photo-card {
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 360px);
  aspect-ratio: 1122 / 1402;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 3px solid #F4F7F9;
  outline: 1px solid rgba(25, 181, 216, 0.25);
  background: var(--paper);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-lg);
  border-color: #146C94;
}

.photo-card:hover img {
  transform: scale(1.04);
}

/* ============================================================
   7 · URGENCY BANNER
   ============================================================ */
.urgency {
  background: linear-gradient(120deg, #0B1F33 0%, #146C94 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 0;
  box-shadow: var(--sh);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(25, 181, 216, 0.4);
  border-bottom: 1px solid rgba(25, 181, 216, 0.4);
}

.urgency h2 {
  color: #FFFFFF;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 600;
  max-width: 22ch;
  margin: 0 auto 14px;
}

.urgency p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
  color: var(--off-white);
}

/* ============================================================
   8 · FOR WHOM (6 CARDS NUMERADOS)
   ============================================================ */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.whom-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 28px 26px;
  box-shadow: var(--sh-card);
  border: 1.5px solid rgba(25, 181, 216, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.whom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -12px rgba(20, 108, 148, 0.25);
  border-color: #146C94;
}

.whom-card .check {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  background: #00C853;
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.4);
}

.whom-card .check svg {
  width: 20px;
  height: 20px;
}

.whom-card h3 {
  font-size: 18.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 9px;
  line-height: 1.25;
}

.whom-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ============================================================
   9 · EVERYTHING YOU RECEIVE
   ============================================================ */
.receive-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.receive-card .art {
  width: 100%;
  max-width: 580px;
  margin-bottom: 22px;
}

.flash-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--pill);
  box-shadow: 0 10px 22px -10px rgba(10, 25, 47, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  border: 1px solid var(--border-gold);
}

.receive-card .sub {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  margin: 4px 0 6px;
  font-size: clamp(19px, 2.4vw, 24px);
}

.receive-card .txt {
  color: var(--muted);
  margin-bottom: 30px;
}

.recv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.recv-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recv-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}

.recv-col li .check {
  flex: 0 0 24px;
  margin-top: 2px;
}

.recv-col li span:not(.check) {
  flex: 1 1 auto;
}

/* ============================================================
   10 · BONUS (5 CARDS DE BÔNUS)
   ============================================================ */
.bonus-tease {
  text-align: center;
  margin-bottom: 14px;
}

.bonus-tease .t1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-clinical);
  letter-spacing: 0.12em;
  font-size: 16px;
}

.bonus-tease .t2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1;
  margin: 4px 0 10px;
}

.bonus-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 44px;
  background: linear-gradient(120deg, #0B1F33 0%, #146C94 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 12px 26px;
  border-radius: var(--pill);
  box-shadow: var(--sh);
  border: 1px solid #19B5D8;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bonus-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  z-index: 6;
  border: 2.5px dashed #19B5D8;
  border-radius: calc(var(--r-lg) - 6px);
  opacity: 0.85;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px -12px rgba(20, 108, 148, 0.25);
  border-color: #146C94;
}

.bonus-card .top {
  background: linear-gradient(180deg, var(--cream-2), var(--paper));
  padding: 16px 14px 12px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.bonus-num {
  background: #146C94;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: var(--pill);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  box-shadow: 0 8px 16px -6px rgba(11, 31, 51, 0.4);
  position: relative;
  z-index: 2;
  border: 1px solid #19B5D8;
}

.bonus-img-frame {
  width: 100%;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 0;
}

.bonus-img-frame img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(11, 31, 51, 0.18));
  transition: transform 0.35s ease;
}

.bonus-card:hover .bonus-img-frame img {
  transform: scale(1.04);
}

.bonus-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bonus-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.bonus-card .desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.value-tag {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(25, 181, 216, 0.08);
  border: 2px dashed #19B5D8;
  border-radius: var(--r-sm);
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}

.value-tag .strike {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 16px;
}

.value-tag .free {
  color: var(--green-deep);
  font-size: 19px;
  font-weight: 700;
}

/* ============================================================
   11 · PLANS / PRICING (OFICIAIS — 2 PLANOS)
   ============================================================ */
.urg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: var(--pill);
  box-shadow: 0 10px 22px -10px rgba(11, 31, 51, 0.3);
  border: 1px solid var(--border-cyan);
  letter-spacing: 0.03em;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 32px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.plan {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: var(--sh-card);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.plan h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.plan .plan-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  margin: 4px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan .art { margin: 8px 0 16px; }

.plan-img-frame {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.plan-img-frame--lg {
  max-width: 560px;
}

.plan-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(11, 31, 51, 0.16));
  transition: transform 0.35s ease;
}

.plan:hover .plan-img-frame img {
  transform: scale(1.04);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.plan ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.42;
}

.plan ul li .li-txt { flex: 1 1 auto; }
.plan ul .check { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; }

.price-old { color: var(--muted); font-size: 15px; text-align: center; }
.price-old s { color: var(--red-accent); }

.price-now {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-deep);
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1;
  margin: 4px 0;
  text-align: center;
}

.price-inst { color: var(--muted); font-size: 15px; margin-bottom: 8px; text-align: center; }

.save-chip {
  display: inline-flex;
  align-self: center;
  background: rgba(20, 108, 148, 0.12);
  color: #146C94;
  border: 1px solid rgba(20, 108, 148, 0.3);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--pill);
  font-size: 14px;
  margin-bottom: 22px;
}

.plan--feature {
  border: 2.5px solid #19B5D8;
  background: linear-gradient(180deg, #F4FBFD 0%, #EBF7FA 100%);
  box-shadow: 0 32px 64px -20px rgba(20, 108, 148, 0.32), 0 12px 28px -10px rgba(11, 31, 51, 0.15);
  transform: scale(1.04);
  z-index: 3;
  padding-top: 46px;
}

.plan--feature::before {
  content: "⚡ MAIS VENDIDO";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #146C94, #19B5D8);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 30px;
  border-radius: var(--pill);
  white-space: nowrap;
  box-shadow: 0 12px 24px -8px rgba(20, 108, 148, 0.4);
  letter-spacing: 0.04em;
}

.plan--feature .mini-urg {
  display: inline-flex;
  align-self: center;
  background: rgba(20, 108, 148, 0.12);
  color: #146C94;
  border: 1px solid rgba(20, 108, 148, 0.25);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 14px;
}

.plan-flag3x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0B1F33, #146C94);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 11px 18px;
  border-radius: var(--pill);
  border: 1px solid #19B5D8;
  margin: 10px 0 20px;
  box-shadow: 0 10px 22px -10px rgba(11, 31, 51, 0.3);
}

.bonus-line {
  background: rgba(10, 25, 47, 0.05);
  border-radius: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(10, 25, 47, 0.12);
}

.bonus-line strong { font-weight: 800; color: var(--navy); }

.bonus-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.2);
  color: var(--navy);
  margin-top: 1px;
}

.bonus-icon svg { width: 14px; height: 14px; stroke: currentColor; }

.plan > .social-arrow {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.plan > .social-arrow .pill {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--pill);
  background: var(--navy);
  color: #FFFFFF;
  box-shadow: var(--sh);
}

.plan > .social-arrow .pill b { color: #19B5D8; font-size: 17px; font-weight: 700; }
.plan > .social-arrow .down {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin: 0;
  color: #19B5D8;
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.pay-banner-img {
  margin-top: 18px;
  width: 100%;
  display: block;
}

.pay-banner-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(10, 25, 47, 0.08));
}

.pay-seals {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pay-seals span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  background: var(--cream-2);
  border: 1px solid var(--border);
  padding: 7px 13px;
  border-radius: 9px;
}

/* ============================================================
   12 · TESTIMONIALS (CARROSSEL DE DEPOIMENTOS)
   ============================================================ */
.testi-shell { max-width: 440px; margin: 0 auto; }
.testi-viewport { overflow: hidden; border-radius: var(--r-lg); }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.5, 0, 0.2, 1); }
.testi-card { flex: 0 0 100%; padding: 6px; }

.testi-img-wrap {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 14px 36px -8px rgba(11, 31, 51, 0.18);
  border: 1.5px solid rgba(20, 108, 148, 0.2);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.testi-img:hover {
  transform: scale(1.02);
}

.testi-ctrl { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }

.dots-nav { display: flex; gap: 9px; }
.dots-nav button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 25, 47, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.dots-nav button.on { background: var(--navy); width: 30px; border-radius: 6px; }

/* ============================================================
   13 · GUARANTEE
   ============================================================ */
.guarantee {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* ============================================================
   13 · GUARANTEE (SATISFAÇÃO É PRIORIDADE)
   ============================================================ */
.sec--guarantee {
  background: var(--paper);
  padding: 64px 0;
}

.guarantee-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.seal-img-frame {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: block;
}

.seal-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(20, 108, 148, 0.22));
  transition: transform 0.35s ease;
}

.seal-img-frame:hover img {
  transform: scale(1.06) rotate(-2deg);
}

.guarantee-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #146C94;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.guarantee-clean h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: #0B1F33;
  margin-bottom: 18px;
  line-height: 1.25;
}

.hl-underline {
  position: relative;
  display: inline-block;
  color: #0B1F33;
  text-decoration: none;
  box-shadow: inset 0 -6px 0 0 #146C94;
}

.hl-underline-cyan {
  position: relative;
  display: inline-block;
  color: #0B1F33;
  font-weight: 600;
  box-shadow: inset 0 -4px 0 0 #19B5D8;
}

.guarantee-desc {
  font-size: clamp(17px, 2.2vw, 21px);
  color: #334E68;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   14 · HOW ACCESS WORKS (COMO RECEBO O MATERIAL)
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.access-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 38px 26px 32px;
  text-align: center;
  box-shadow: var(--sh-card);
  border: 1.5px solid rgba(20, 108, 148, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.access-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -10px rgba(20, 108, 148, 0.2);
  border-color: #19B5D8;
}

.access-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}

.access-icon-circle svg {
  width: 32px;
  height: 32px;
}

/* Gradients Harmoniosos da Paleta Médica */
.access-icon-circle--emerald {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  box-shadow: 0 10px 24px -6px rgba(0, 200, 83, 0.45);
}

.access-icon-circle--cyan {
  background: linear-gradient(135deg, #19B5D8 0%, #146C94 100%);
  box-shadow: 0 10px 24px -6px rgba(25, 181, 216, 0.45);
}

.access-icon-circle--blue {
  background: linear-gradient(135deg, #0288D1 0%, #0B1F33 100%);
  box-shadow: 0 10px 24px -6px rgba(11, 31, 51, 0.4);
}

.access-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.35;
}

.access-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   15 · FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }

.faq-item {
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 18px;
}

.faq-q .tog {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: transform 0.3s, background 0.25s;
}

.faq-q .tog svg { width: 16px; height: 16px; stroke: var(--navy); }

.faq-item.open .faq-q .tog {
  transform: rotate(45deg);
  background: var(--navy);
  border-color: var(--navy);
}

.faq-item.open .faq-q .tog svg { stroke: var(--cyan-electric); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--ink); font-size: 16.5px; }

/* ============================================================
   16 · FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(244, 247, 249, 0.75);
  padding: 52px 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  border-top: 1px solid rgba(25, 181, 216, 0.2);
}

.footer .wrap { max-width: 820px; }
.footer p { margin-bottom: 14px; }
.footer .cr { color: var(--off-white); font-family: var(--font-display); font-weight: 600; font-size: 16px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVITY
   ============================================================ */
@media (max-width: 980px) {
  .gal-card { width: clamp(220px, 40vw, 300px) !important; max-width: none !important; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; max-width: 500px; gap: 20px; }
  .bonus-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .recv-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-block .blist { grid-template-columns: 1fr; }
  .benefit-block .blist li:last-child:nth-child(odd) { max-width: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan--feature { transform: none; }
  .guarantee { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .seal { margin: 0 auto; }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .sec { padding: 48px 0; }
  .wrap { padding: 0 16px; }
  .hero { padding: 36px 0 44px; }
  .feat-grid, .whom-grid, .access-grid { grid-template-columns: 1fr; gap: 18px; }
  .btn { width: 100%; padding: 18px 24px; font-size: 16px; }
  
  .marquee { margin-left: -16px; margin-right: -16px; width: calc(100% + 32px); }
  .marquee-track { gap: 12px; }
  .gal-card { width: clamp(160px, 50vw, 220px) !important; max-width: none !important; }
  .photo-card { width: clamp(320px, 90vw, 420px) !important; max-width: none !important; }
  
  /* Section 9 (Tudo o que voce vai receber) Mobile Polish */
  .receive-card { padding: 28px 18px; border-radius: var(--r-md); }
  .recv-grid { grid-template-columns: 1fr; gap: 12px; }
  .recv-col li { font-size: 15px; gap: 10px; }
  .recv-col li .check { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; }
  
  /* Section 11 (Plans / Oferta) Mobile Polish */
  .plans-grid { grid-template-columns: 1fr; max-width: 100%; gap: 28px; }
  .plan { padding: 30px 18px; border-radius: var(--r-md); }
  .plan ul li { font-size: 14.5px; gap: 10px; }
  .plan ul .check { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; }
  .plan-img-frame { max-width: 240px; }
  .plan > .social-arrow { flex-direction: column; gap: 10px; width: 100%; margin-top: 14px; }
  .plan > .social-arrow .pill { width: 100%; font-size: 13px; padding: 10px 12px; text-align: center; }
  .plan > .social-arrow .down { margin-top: 2px; }

  /* Section 13 (Guarantee) Mobile Polish */
  .guarantee { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .seal { margin: 0 auto; }
  .seal-img-frame { max-width: 210px; }
  .guarantee-copy { text-align: center; }
  .guarantee-copy h2 { font-size: 24px; text-align: center; margin-bottom: 12px; }
  .guarantee p { font-size: 15.5px; }
  .guarantee .gl { text-align: left; max-width: 320px; margin: 12px auto; font-size: 15px; }
  .guarantee .emph { font-size: 16.5px; margin: 14px 0; text-align: center; }
  .guarantee .stack { justify-content: center; gap: 8px; margin: 12px 0 0; }
  .guarantee .stack span { font-size: 13px; padding: 7px 14px; }

  /* Section 14 & 15 Mobile Polish */
  .step-card { padding: 22px 18px; }
  .faq-q { padding: 16px 18px; font-size: 16px; gap: 12px; }
  .faq-a p { padding: 0 18px 18px; font-size: 15px; }
  .offerbar { font-size: 13.5px; padding: 10px 14px; }
}

/* ============================================================
   IMAGE PREVIEW MODAL
   ============================================================ */
.gal-card, .hero-img, .receive-img, .plan-img, .bonus-img, .testi-img {
  cursor: pointer;
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.img-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.img-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.88);
  backdrop-filter: blur(8px);
}

.img-modal-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.img-modal.is-open .img-modal-content {
  transform: scale(1);
}

.img-modal-content img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(25, 181, 216, 0.3);
}

.img-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E53935;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, background 0.2s;
  z-index: 10;
}

.img-modal-close:hover {
  background: #D32F2F;
  transform: scale(1.1);
}

.img-modal-close svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  .img-modal-close {
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
  }
  .img-modal-close svg {
    width: 18px;
    height: 18px;
  }
}





/* Hero Headline Mobile Formatting */
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(19.5px, 5.2vw, 24px) !important;
    line-height: 1.34 !important;
    max-width: 320px !important;
    margin: 14px auto 20px !important;
    text-align: center !important;
    text-wrap: pretty !important;
    letter-spacing: -0.015em !important;
    padding: 0 4px !important;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    max-width: 295px !important;
    font-size: 19px !important;
  }
}
