
:root {
  --rosa-ov: #C88279;
  --verde-ov: #938A68;
  --marrom-ov: #7C5A42;
  --verde-escuro: #616633;
  --verde-medio: #7A7F47;
  --terracota-suave: #CD9080;
  --terracota-profundo: #BC6C57;
  --areia: #FAEFE3;
  --offwhite: #FBEEE8;
  --bege: #E7D7C7;
  --salvia: #C9BDA1;
  --branco: #FFFFFF;
  --texto: #453830;
  --texto-suave: #71655D;
  --linha: rgba(124, 90, 66, .14);
  --shadow: 0 28px 78px rgba(124, 90, 66, .14);
  --radius: 42px;
  --pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--texto);
  background:
    radial-gradient(circle at top left, rgba(200,130,121,.20), transparent 34rem),
    radial-gradient(circle at top right, rgba(147,138,104,.18), transparent 32rem),
    linear-gradient(180deg, var(--offwhite), var(--areia));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 34px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding-top: 16px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-radius: var(--pill);
  border: 1px solid var(--linha);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(124,90,66,.07);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand span {
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--verde-escuro);
}
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--texto-suave);
  font-weight: 700;
  font-size: .95rem;
}
.nav a:hover { color: var(--marrom-ov); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-download {
  background: var(--verde-escuro);
  color: var(--areia);
  box-shadow: 0 16px 36px rgba(97,102,51,.22);
}
.btn-soft {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--linha);
  color: var(--marrom-ov);
}
.language { position: relative; }
.globe {
  width: 50px;
  height: 50px;
  border-radius: var(--pill);
  border: 1px solid var(--linha);
  background: rgba(255,255,255,.78);
  cursor: pointer;
  font-size: 1.22rem;
}
.language-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 190px;
  padding: 8px;
  border-radius: 22px;
  border: 1px solid var(--linha);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.language.open .language-menu { display: grid; gap: 4px; }
.language-menu button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--texto);
  cursor: pointer;
}
.language-menu button:hover {
  background: var(--areia);
}

.hero {
  padding: 72px 0 34px;
}
.hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 50px;
}
.eyebrow, .section-label, .mini-app-card span, .iphone-app span {
  margin: 0 0 14px;
  color: var(--rosa-ov);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 900;
}
.hero h1, .section h2, .apps-hero h1 {
  margin: 0 0 22px;
  line-height: .94;
  letter-spacing: -.075em;
  color: var(--marrom-ov);
}
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  max-width: 760px;
}
.hero-text {
  margin: 0;
  max-width: 650px;
  color: var(--texto-suave);
  font-size: 1.16rem;
  line-height: 1.82;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-visual {
  display: grid;
  place-items: center;
}
.icon-stage {
  width: min(520px, 92vw);
  aspect-ratio: 1;
  border-radius: 72px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.66), rgba(250,239,227,.88));
  border: 1px solid var(--linha);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 20px;
}
.icon-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(124,90,66,.16));
}

.section { padding: 25px 0; }
.split-card, .apps-preview .container, .contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--linha);
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 54px rgba(124,90,66,.08);
  padding: clamp(32px, 5vw, 62px);
}
.split-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}
.section h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  color: var(--verde-escuro);
}
.split-card p:last-child, .section-head p, .contact-card p {
  margin: 0;
  color: var(--texto-suave);
  font-size: 1.08rem;
  line-height: 1.82;
}
.brand-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.65), rgba(251,238,232,.78));
}

.section-head {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.apps-preview-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--linha);
  background: rgba(250,239,227,.78);
  padding: 30px;
}
.watermark {
  position: absolute;
  width: min(540px, 76%);
  opacity: .075;
  right: -70px;
  bottom: -110px;
  pointer-events: none;
}
.mini-app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mini-app-card {
  min-height: 190px;
  border-radius: 30px;
  padding: 20px;
  border: 1px solid rgba(124,90,66,.10);
  background: rgba(255,255,255,.68);
  display: grid;
  align-content: start;
  gap: 10px;
}
.mini-app-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.mini-app-card strong {
  font-size: 1.1rem;
  color: var(--marrom-ov);
}
.mini-app-card span {
  margin: 0;
  color: var(--verde-medio);
  font-size: .63rem;
}
.available-card span { color: var(--verde-escuro); }
.dev-card img { opacity: .45; filter: saturate(.75); }
.center-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-card {
  text-align: center;
}
.contact-card h2 {
  margin-left: auto;
  margin-right: auto;
}
.contact-card p {
  max-width: 760px;
  margin: 0 auto 28px;
}
.footer {
  padding: 12px 0 34px;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--texto-suave);
}
.footer p { margin: 0; }

.apps-hero {
  padding: 86px 0 30px;
  text-align: center;
}
.apps-hero h1 {
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  color: var(--marrom-ov);
}
.apps-hero p {
  margin: 0 auto 28px;
  max-width: 760px;
  color: var(--texto-suave);
  font-size: 1.15rem;
  line-height: 1.75;
}
.iphone-section {
  padding: 20px 0 80px;
  display: grid;
  place-items: center;
}
.phone-shell {
  width: min(430px, calc(100vw - 32px));
  min-height: 760px;
  border-radius: 64px;
  padding: 38px 24px 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(250,239,227,.94));
  border: 1px solid var(--linha);
  box-shadow: var(--shadow);
  position: relative;
}
.phone-status {
  width: 110px;
  height: 28px;
  border-radius: 999px;
  background: rgba(69,56,48,.10);
  margin: 0 auto 28px;
}
.iphone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 18px;
}
.iphone-app {
  text-align: center;
}
.iphone-app img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.iphone-app strong {
  display: block;
  font-size: .83rem;
  line-height: 1.15;
  color: var(--texto);
}
.iphone-app span {
  display: block;
  margin-top: 6px;
  font-size: .54rem;
  letter-spacing: .08em;
  color: var(--verde-medio);
}

@media (max-width: 980px) {
  .hero-grid, .split-card, .section-head {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .mini-app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .nav, .btn-download { display: none; }
  .nav-wrap { border-radius: 28px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .hero-actions, .center-actions { flex-direction: column; }
  .hero-actions .btn, .center-actions .btn { width: 100%; }
  .mini-app-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; text-align: center; }
}


/* v2.1 refinements */
.globe {
  color: var(--verde-escuro);
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.78), transparent 34%),
    linear-gradient(145deg, rgba(250,239,227,.96), rgba(231,215,199,.62));
  border-color: rgba(97, 102, 51, .24);
  box-shadow: 0 10px 24px rgba(97, 102, 51, .12);
}

.globe:hover {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(145deg, rgba(251,238,232,.98), rgba(201,189,161,.56));
}

.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.instagram-link {
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--pill);
  border: 1px solid rgba(200, 130, 121, .24);
  background: rgba(255,255,255,.70);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--marrom-ov);
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 130, 121, .12);
  background: rgba(251,238,232,.9);
}

.instagram-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--rosa-ov), var(--terracota-profundo));
  color: var(--areia);
}

.instagram-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.instagram-icon rect,
.instagram-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 760px) {
  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn,
  .instagram-link {
    width: 100%;
  }
}


/* v2.2 refinements */
.globe {
  color: var(--marrom-ov);
}

.globe svg {
  width: 23px;
  height: 23px;
  display: block;
  margin: auto;
}

.globe svg circle,
.globe svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iphone-app {
  color: inherit;
  text-decoration: none;
  display: block;
  border-radius: 24px;
  padding: 8px 4px 10px;
  transition: transform .18s ease, background .18s ease;
}

.iphone-app:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.55);
}

.product-hero {
  padding: 86px 0 36px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 54px;
}

.product-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  color: var(--marrom-ov);
}

.product-copy h2 {
  margin: 0 0 20px;
  max-width: 720px;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -.06em;
  color: var(--verde-escuro);
}

.product-copy p {
  margin: 0;
  max-width: 660px;
  color: var(--texto-suave);
  font-size: 1.12rem;
  line-height: 1.8;
}

.product-icon-card {
  min-height: 520px;
  border-radius: 64px;
  border: 1px solid var(--linha);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.85), transparent 28rem),
    linear-gradient(145deg, rgba(255,255,255,.58), rgba(250,239,227,.78));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 44px;
}

.product-icon-card img {
  width: min(420px, 86%);
  filter: drop-shadow(0 24px 36px rgba(97,102,51,.16));
}

.screenshots-section .container,
.video-card {
  border-radius: var(--radius);
  border: 1px solid var(--linha);
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 54px rgba(124,90,66,.08);
  padding: clamp(32px, 5vw, 62px);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.phone-preview {
  min-height: 430px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(146,188,183,.22), rgba(250,239,227,.86));
  border: 1px solid rgba(97,102,51,.18);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.36);
  display: grid;
  place-items: center;
  color: var(--verde-escuro);
  font-weight: 900;
  text-align: center;
  padding: 18px;
}

.video-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.video-card h2 {
  margin: 0 0 14px;
  color: var(--verde-escuro);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.video-card p {
  margin: 0;
  color: var(--texto-suave);
  line-height: 1.8;
  font-size: 1.05rem;
}

.video-placeholder {
  min-height: 320px;
  border-radius: 34px;
  border: 1px solid rgba(97,102,51,.18);
  background:
    radial-gradient(circle at center, rgba(250,239,227,.8), rgba(146,188,183,.28)),
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(250,239,227,.72));
  display: grid;
  place-items: center;
}

.play-button {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--marrom-ov);
  color: var(--areia);
  display: grid;
  place-items: center;
  font-size: 2rem;
  padding-left: 5px;
  box-shadow: 0 18px 34px rgba(124,90,66,.22);
}

@media (max-width: 980px) {
  .product-grid,
  .video-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}


/* v2.3 refinements */
.mini-app-link {
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.mini-app-link:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 34px rgba(124,90,66,.10);
}

.app-store-badge {
  width: 168px;
  min-height: 54px;
  border-radius: 14px;
  background: #000000;
  color: #FFFFFF;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 14px 8px;
  text-decoration: none;
  letter-spacing: -.02em;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.18);
}

.app-store-badge span {
  font-size: .66rem;
  line-height: 1;
  opacity: .9;
  font-weight: 600;
}

.app-store-badge strong {
  font-size: 1.22rem;
  line-height: 1.05;
  font-weight: 800;
}

.collection-appstore-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 5;
}

.phone-shell {
  position: relative;
}

.product-appstore-badge {
  width: 186px;
  min-height: 58px;
}

.fasting-features .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.fasting-features article {
  border-radius: 30px;
  border: 1px solid var(--linha);
  background: rgba(255,255,255,.56);
  box-shadow: 0 16px 42px rgba(124,90,66,.07);
  padding: 24px;
}

.fasting-features h3 {
  margin: 0 0 10px;
  color: var(--marrom-ov);
  font-size: 1.18rem;
}

.fasting-features p {
  margin: 0;
  color: var(--texto-suave);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .fasting-features .feature-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 620px) {
  .fasting-features .feature-grid {
    grid-template-columns: 1fr;
  }

  .collection-appstore-badge {
    position: static;
    margin: 22px 0 0;
    width: 100%;
    align-items: center;
  }
}


/* v2.4 refinements */
.brand img,
.icon-stage img,
.product-icon-card img,
.mini-app-card img,
.iphone-app img {
  backface-visibility: hidden;
}

.icon-stage {
  padding: 14px;
}

.icon-stage img {
  transform: scale(1.018);
}

.real-screenshots {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.phone-shot {
  margin: 0;
  border-radius: 34px;
  padding: 12px 12px 18px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(97,102,51,.14);
  box-shadow: 0 18px 44px rgba(124,90,66,.09);
}

.phone-shot img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 14px 28px rgba(69,56,48,.10);
}

.phone-shot figcaption {
  margin-top: 12px;
  color: var(--verde-escuro);
  font-weight: 800;
  text-align: center;
  font-size: .94rem;
  line-height: 1.35;
}

.video-player {
  padding: 0;
  overflow: hidden;
  background: #000;
}

.video-player video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: contain;
  background: #000;
}

@media (max-width: 980px) {
  .real-screenshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .real-screenshots {
    grid-template-columns: 1fr;
  }
}


/* v2.6 refinements */
.official-app-store-badge {
  display: inline-flex;
  width: 180px;
  height: 56px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.official-app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.official-app-store-badge img {
  width: 100%;
  height: 100%;
  display: block;
}

.collection-appstore-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 5;
}

.product-appstore-badge {
  width: 190px;
  height: 59px;
}

.video-card {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.video-player.video-compact {
  min-height: unset;
  height: min(58vh, 520px);
  max-height: 520px;
  padding: 14px;
  background: rgba(0,0,0,.94);
}

.video-player.video-compact video {
  width: 100%;
  height: 100%;
  min-height: unset;
  max-height: 492px;
  object-fit: contain;
  border-radius: 20px;
}

.iphone-app.available-card img,
.mini-app-card.available-card img,
.product-icon-card img {
  background: transparent;
}

@media (max-width: 620px) {
  .collection-appstore-badge {
    position: static;
    margin: 22px 0 0;
    width: 180px;
    height: 56px;
  }

  .video-player.video-compact {
    height: min(55vh, 430px);
  }
}


/* v2.7 refinements */
.feature-heading {
  margin-bottom: 18px;
}

.feature-heading h2 {
  margin: 0;
  color: var(--verde-escuro);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.iphone-app.available-card img,
.mini-app-card.available-card img {
  border-radius: 22%;
  overflow: hidden;
}

.product-icon-card img {
  border-radius: 22%;
  overflow: hidden;
}

@media (max-width: 760px) {
  body:has(.apps-hero) .btn-download {
    display: none;
  }
}


/* v2.8 refinements */

.language-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-menu button.active,
.language-menu button:hover {
  background: var(--areia);
}
.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}
.app-store-badge {
  width: 190px;
  min-height: 58px;
  border-radius: 15px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.1);
}
.app-store-badge .app-store-icon {
  font-size: 1.9rem;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}
.app-store-badge .app-store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-store-badge .app-store-copy span {
  font-size: .68rem;
  line-height: 1.05;
  font-weight: 600;
  opacity: .92;
}
.app-store-badge .app-store-copy strong {
  font-size: 1.22rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
}
.product-appstore-badge {
  width: 210px;
  min-height: 60px;
}
.collection-appstore-badge {
  width: 190px;
}
.feature-heading h2 {
  max-width: 16ch;
}
.video-card {
  max-width: 1100px;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  align-items: stretch;
}
.video-copy-card {
  min-height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(97,102,51,.14);
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  padding: clamp(26px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-copy-card h2 {
  margin-bottom: 18px;
}
.video-copy-card p {
  margin-bottom: 16px;
}
.video-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.video-points li {
  position: relative;
  padding-left: 22px;
  color: var(--marrom-ov);
  font-weight: 700;
  line-height: 1.5;
}
.video-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--rosa-ov), var(--verde-ov));
}
.video-player.video-compact {
  height: min(58vh, 520px);
  min-height: 520px;
}
.video-player.video-compact video {
  max-height: none;
}
.footer p[data-i18n="footerTagline"] {
  font-weight: 700;
}
@media (max-width: 980px) {
  .video-card {
    grid-template-columns: 1fr;
  }
  .video-player.video-compact {
    min-height: 420px;
  }
}
@media (max-width: 620px) {
  .feature-heading h2 {
    max-width: 10ch;
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
  .video-player.video-compact {
    min-height: 360px;
    height: min(54vh, 390px);
  }
}


/* v2.10 refinements */
.collection-appstore-badge {
  display: none !important;
}

.product-appstore-badge {
  width: auto;
  min-width: 210px;
  min-height: 50px;
  height: 50px;
  border-radius: var(--pill);
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
  overflow: hidden;
}

.product-appstore-badge .app-store-icon {
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-1px);
}

.product-appstore-badge .app-store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.product-appstore-badge .app-store-copy span {
  font-size: .62rem;
  line-height: 1;
  white-space: nowrap;
}

.product-appstore-badge .app-store-copy strong {
  font-size: 1.03rem;
  line-height: 1.05;
  white-space: nowrap;
}

.product-icon-card img,
.brand img,
.icon-stage img,
.iphone-app.available-card img,
.mini-app-card.available-card img {
  border-radius: 22%;
  background: transparent;
  object-fit: contain;
}


/* v2.11 refinements */
.video-card {
  max-width: 980px;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, .88fr);
  align-items: center;
}

.video-player.video-compact {
  height: auto;
  min-height: unset;
  max-height: none;
  padding: 18px;
  background: rgba(0,0,0,.94);
  display: grid;
  place-items: center;
}

.video-player.video-compact video {
  width: min(100%, 360px);
  height: auto;
  max-height: min(62vh, 520px);
  min-height: unset;
  object-fit: contain;
  border-radius: 20px;
  margin: 0 auto;
}

.video-copy-card {
  justify-content: center;
}

@media (max-width: 980px) {
  .video-card {
    grid-template-columns: 1fr;
  }

  .video-player.video-compact video {
    width: min(100%, 340px);
    max-height: 520px;
  }
}

@media (max-width: 620px) {
  .video-player.video-compact {
    padding: 12px;
  }

  .video-player.video-compact video {
    width: min(100%, 300px);
    max-height: 430px;
  }
}


/* v2.15 Money Planner disabled look */
.money-card img { opacity: .22 !important; filter: grayscale(1) saturate(0) brightness(1.02) contrast(.92) !important; }


/* v2.13 launch video copy */
.video-copy-card .video-points {
  margin-top: 6px;
}

.video-copy-card .video-points li {
  color: var(--verde-escuro);
}


/* v2.16 video background refinement */
.video-player,
.video-player.video-compact {
  background: #FFFFFF !important;
  border: 1px solid rgba(124, 90, 66, .10);
  box-shadow: 0 18px 54px rgba(124, 90, 66, .08);
}

.video-player.video-compact video {
  background: #FFFFFF !important;
}


/* v2.18 Fasting Planner privacy footer */
.app-footer {
  padding-top: 18px;
}

.privacy-link {
  color: var(--verde-escuro);
  font-weight: 800;
  border-bottom: 1px solid rgba(97, 102, 51, .28);
  padding-bottom: 3px;
  transition: color .18s ease, border-color .18s ease;
}

.privacy-link:hover {
  color: var(--marrom-ov);
  border-color: rgba(124, 90, 66, .42);
}
