/* =========================================================
   ZYBARO LANDING — V0.1
   CSS consolidado
   ========================================================= */

/* 01. TOKENS
   ========================================================= */

:root {
  --background: #080808;
  --background-soft: #101010;
  --background-card: rgba(255, 255, 255, 0.045);

  --text-primary: #f4f0e8;
  --text-secondary: #aaa59c;
  --text-muted: #77736d;

  --gold: #c9a65a;
  --gold-light: #e1c47f;
  --gold-dark: #80652d;

  --border: rgba(201, 166, 90, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);

  --container: 1240px;
  --header-height: 88px;

  --transition: 220ms ease;
}


/* 02. RESET E BASE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--text-primary);
  background: var(--background);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;

  color: var(--gold);

  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 600;
}


/* 03. HEADER
   ========================================================= */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;

  height: var(--header-height);

  border-bottom: 1px solid transparent;

  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    background var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--border-soft);
  background: rgba(8, 8, 8, 0.92);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  letter-spacing: 0.2em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.brand-text small {
  color: var(--text-muted);
  letter-spacing: 0.18em;
  font-size: 8px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-navigation > a {
  color: var(--text-secondary);
  font-size: 13px;
  transition: color var(--transition);
}

.main-navigation > a:hover,
.main-navigation > a:focus-visible {
  color: var(--gold-light);
}

.main-navigation .navigation-cta {
  padding: 12px 18px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;

  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;

  background: var(--gold-light);

  transition:
    transform var(--transition),
    opacity var(--transition);
}


/* 04. BOTÕES
   ========================================================= */

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;

  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(228, 196, 126, 0.72);
  color: #0b0a08;

  background:
    linear-gradient(
      135deg,
      #e0c17a 0%,
      #b88e42 54%,
      #8b682d 100%
    );

  box-shadow:
    0 10px 34px rgba(158, 108, 39, 0.15),
    inset 0 1px 0 rgba(255, 244, 209, 0.45);
}

.button-primary:hover {
  box-shadow:
    0 14px 42px rgba(176, 124, 48, 0.24),
    inset 0 1px 0 rgba(255, 248, 222, 0.55);
}

.button-secondary {
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: var(--border);
  color: var(--gold-light);
}


/* 05. HERO
   ========================================================= */

.hero {
  position: relative;
  display: block;

  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;

  border-bottom: 1px solid var(--border-soft);

  background:
    url("assets/images/mockups/hero-bar-v01.webp")
    center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 6, 0.96) 0%,
      rgba(7, 7, 6, 0.86) 34%,
      rgba(7, 7, 6, 0.54) 66%,
      rgba(7, 7, 6, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 7, 6, 0.06) 0%,
      rgba(7, 7, 6, 0.16) 66%,
      rgba(7, 7, 6, 0.78) 100%
    );

  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: flex;
  min-height: calc(100svh - var(--header-height));

  padding-top: 68px;
  padding-bottom: 78px;

  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 1160px;
}

.hero .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 1150px;
  margin: 0;

  letter-spacing: -0.045em;
  line-height: 0.98;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 400;
}

.hero h1 span {
  display: block;
  margin-top: 8px;

  color: var(--gold-light);
  font-style: italic;
}

.hero-description {
  max-width: 770px;
  margin: 38px 0 0;

  color: var(--text-secondary);

  line-height: 1.78;
  font-size: 17px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  width: 100%;
  max-width: 820px;

  margin-top: 34px;

  border: 1px solid rgba(201, 166, 90, 0.18);
  border-radius: 16px;

  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  overflow: hidden;
}

.hero-highlights > div {
  display: flex;
  min-height: 88px;
  padding: 18px 24px;

  flex-direction: column;
  justify-content: center;
}

.hero-highlights > div + div {
  border-left: 1px solid rgba(201, 166, 90, 0.18);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  color: var(--text-primary);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.hero-highlights span {
  margin-top: 6px;

  color: rgba(244, 240, 232, 0.58);

  line-height: 1.4;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 28px;
}


/* 06. POSICIONAMENTO / EXPERIÊNCIA
   ========================================================= */

.positioning-section {
  position: relative;

  padding: 112px 0 124px;

  border-top: 1px solid var(--border-soft);

  background:
    radial-gradient(
      ellipse 42% 58% at 14% 48%,
      rgba(201, 166, 90, 0.045),
      transparent 72%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      transparent 38%
    ),
    var(--background);
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 96px;
  align-items: center;
}

.positioning-section h2 {
  max-width: 760px;
  margin: 0;

  letter-spacing: -0.025em;
  line-height: 1.08;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 400;
}

.positioning-copy {
  display: grid;
  gap: 18px;

  max-width: 560px;
  padding-top: 72px;
}

.positioning-card {
  display: block;

  padding: 28px 30px;

  border: 1px solid rgba(201, 166, 90, 0.11);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.positioning-card-title {
  display: block;
  margin-bottom: 12px;

  color: var(--gold);

  font-size: 17px;
  font-weight: 700;
}

.positioning-card p {
  margin: 0;

  color: var(--text-secondary);

  line-height: 1.78;
  font-size: 16px;
}


/* 07. DESCOBRIR
   ========================================================= */

.discover-section {
  position: relative;

  min-height: 780px;
  padding: 140px 0 80px;
  overflow: hidden;

  border-top: 1px solid var(--border-soft);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      transparent 30%
    ),
    var(--background);
}

.discover-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 80px;
  align-items: center;
}

.discover-content {
  position: relative;
  z-index: 3;

  max-width: 650px;
  padding-bottom: 70px;
}

.discover-section h2 {
  max-width: 700px;
  margin: 0;

  letter-spacing: -0.04em;
  line-height: 0.98;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
}

.discover-section h2 span {
  display: block;

  color: var(--gold-light);
  font-style: italic;
}

.discover-description {
  max-width: 560px;
  margin: 34px 0 0;

  color: var(--text-secondary);

  line-height: 1.78;
  font-size: 17px;
}

.discover-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  width: 100%;
  max-width: 760px;

  margin-top: 44px;

  border: 1px solid rgba(201, 166, 90, 0.14);
  border-radius: 16px;

  background: rgba(8, 8, 8, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  overflow: hidden;
}

.discover-features > div {
  display: flex;
  min-height: 108px;
  padding: 20px 22px;

  flex-direction: column;
  justify-content: center;
}

.discover-features > div + div {
  border-left: 1px solid rgba(201, 166, 90, 0.14);
}

.discover-features strong,
.discover-features span {
  display: block;
}

.discover-features strong {
  color: var(--text-primary);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.discover-features span {
  margin-top: 7px;

  color: rgba(244, 240, 232, 0.56);

  line-height: 1.5;
  font-size: 12px;
}

.discover-link:hover,
.discover-link:focus-visible,
.organize-link:hover,
.organize-link:focus-visible {
  gap: 18px;
  border-color: var(--gold-light);
}

.discover-visual {
  position: relative;

  display: flex;
  min-height: 780px;

  align-items: center;
  justify-content: center;
  overflow: visible;
}

.discover-visual::before {
  position: absolute;
  top: 12%;
  left: 50%;

  width: 560px;
  height: 560px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(201, 166, 90, 0.16) 0%,
      rgba(201, 166, 90, 0.07) 36%,
      rgba(201, 166, 90, 0.025) 58%,
      transparent 74%
    );

  filter: blur(18px);

  content: "";
  transform: translateX(-50%);
}

.discover-visual::after {
  position: absolute;
  bottom: 3%;
  left: 50%;

  width: 430px;
  height: 72px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(225, 196, 127, 0.34) 0%,
      rgba(201, 166, 90, 0.17) 36%,
      rgba(201, 166, 90, 0.05) 62%,
      transparent 78%
    );

  filter: blur(18px);

  content: "";
  transform: translateX(-50%);
}

.discover-phone {
  position: relative;
  z-index: 2;

  width: min(540px, 100%);
  margin: 0 auto -20px;

  object-fit: contain;

  filter:
    drop-shadow(0 42px 85px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 45px rgba(201, 166, 90, 0.06));

  transition: transform 500ms ease;
}

.discover-phone:hover {
  transform: translateY(-8px);
}

.discover-glow {
  position: absolute;
  top: 16%;
  right: -12%;

  width: 760px;
  height: 760px;

  border-radius: 50%;

  background: rgba(173, 106, 31, 0.09);
  filter: blur(150px);

  pointer-events: none;
}


/* 08. ORGANIZAR
   ========================================================= */

.organize-section {
  position: relative;

  padding: 140px 0;
  overflow: hidden;

  border-top: 1px solid var(--border-soft);

  background:
    radial-gradient(
      ellipse 48% 58% at 14% 52%,
      rgba(181, 126, 46, 0.09) 0%,
      rgba(126, 82, 27, 0.035) 46%,
      transparent 76%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.014),
      transparent 34%
    ),
    var(--background-soft);
}

.organize-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: center;
}

.organize-content {
  width: 100%;
  max-width: 650px;
}

.organize-section h2 {
  max-width: 680px;
  margin: 0;

  letter-spacing: -0.04em;
  line-height: 0.99;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.4vw, 80px);
  font-weight: 400;
}

.organize-section h2 span {
  display: block;
  margin-top: 7px;

  color: var(--gold-light);
  font-style: italic;
}

.organize-description {
  max-width: 610px;
  margin: 34px 0 0;

  color: var(--text-secondary);

  line-height: 1.78;
  font-size: 17px;
}

.organize-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 46px;

  border-top: 1px solid rgba(201, 166, 90, 0.11);
  border-left: 1px solid rgba(201, 166, 90, 0.11);
}

.organize-feature {
  display: block;

  min-height: 168px;
  padding: 28px 30px;

  border-right: 1px solid rgba(201, 166, 90, 0.11);
  border-bottom: 1px solid rgba(201, 166, 90, 0.11);

  background: rgba(255, 255, 255, 0.012);

  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.organize-feature:hover {
  z-index: 1;

  border-color: rgba(201, 166, 90, 0.28);
  background: rgba(201, 166, 90, 0.035);

  transform: translateY(-3px);
}

.organize-feature strong {
  display: block;

  color: var(--gold);

  line-height: 1.25;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.organize-feature p {
  margin: 14px 0 0;

  color: var(--text-secondary);

  line-height: 1.65;
  font-size: 14px;
}

.organize-visual {
  position: relative;

  display: flex;
  min-height: 710px;

  align-items: center;
  justify-content: center;
}

.organize-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 540px;
  height: 540px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(201, 166, 90, 0.16) 0%,
      rgba(201, 166, 90, 0.065) 37%,
      rgba(201, 166, 90, 0.02) 59%,
      transparent 75%
    );

  filter: blur(20px);

  content: "";
  transform: translate(-50%, -50%);
}

.organize-visual::after {
  position: absolute;
  z-index: 1;
  bottom: 8%;
  left: 50%;

  width: 410px;
  height: 68px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(225, 196, 127, 0.3) 0%,
      rgba(201, 166, 90, 0.13) 40%,
      rgba(201, 166, 90, 0.04) 63%,
      transparent 80%
    );

  filter: blur(20px);

  content: "";
  transform: translateX(-50%);
}

.organize-phone {
  position: relative;
  z-index: 2;

  width: min(570px, 100%);
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 42px 82px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 42px rgba(201, 166, 90, 0.06));

  transition:
    transform 450ms ease,
    filter 450ms ease;
}

.organize-phone:hover {
  transform: translateY(-7px);

  filter:
    drop-shadow(0 48px 90px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 48px rgba(201, 166, 90, 0.09));
}

.organize-glow {
  position: absolute;
  bottom: -28%;
  left: -18%;

  width: 720px;
  height: 720px;

  border-radius: 50%;

  background: rgba(143, 92, 29, 0.075);
  filter: blur(150px);

  pointer-events: none;
}


/* 09. COMPARTILHAR
   ========================================================= */

.share-section {
  position: relative;

  padding: 140px 0;
  overflow: hidden;

  border-top: 1px solid var(--border-soft);

  background:
    radial-gradient(
      ellipse 46% 60% at 82% 50%,
      rgba(181, 126, 46, 0.08) 0%,
      rgba(126, 82, 27, 0.03) 46%,
      transparent 76%
    ),
    var(--background);
}

.share-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);

  gap: 60px;

  align-items: center;
}

.share-content {
  max-width: 680px;
}

.share-section h2 {
  max-width: 720px;
  margin: 0;

  letter-spacing: -0.04em;
  line-height: 0.99;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.4vw, 80px);
  font-weight: 400;
}

.share-section h2 span {
  display: block;
  margin-top: 7px;

  color: var(--gold-light);
  font-style: italic;
}

.share-description {
  max-width: 600px;
  margin: 34px 0 0;

  color: var(--text-secondary);

  line-height: 1.78;
  font-size: 17px;
}

.share-visual {
  position: relative;

  display: flex;
  min-height: 690px;

  align-items: center;
  justify-content: center;
}

.share-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(201, 166, 90, 0.15) 0%,
      rgba(201, 166, 90, 0.06) 38%,
      rgba(201, 166, 90, 0.02) 58%,
      transparent 75%
    );

  filter: blur(20px);

  content: "";
  transform: translate(-50%, -50%);
}

.share-showcase {
  position: relative;
  z-index: 2;

  width: min(390px, 100%);
  aspect-ratio: 9 / 19.5;
}

.showcase-frame {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;

  visibility: hidden;
  opacity: 0;

  filter:
    drop-shadow(0 42px 82px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 42px rgba(201, 166, 90, 0.06));

  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.showcase-frame.active {
  visibility: visible;
  opacity: 1;
}

.showcase-frame.active {
  opacity: 1;
}

/* 10. DOWNLOAD
   ========================================================= */

.download-section {
  position: relative;

  display: flex;
  min-height: 720px;
  padding: 140px 0;
  overflow: hidden;

  align-items: center;

  border-top: 1px solid var(--border-soft);

  text-align: center;

  background:
    radial-gradient(
      ellipse 56% 58% at 50% 104%,
      rgba(194, 135, 48, 0.16) 0%,
      rgba(136, 87, 27, 0.06) 42%,
      transparent 74%
    ),
    linear-gradient(
      180deg,
      #080808 0%,
      #090806 100%
    );
}

.download-content {
  position: relative;
  z-index: 2;

  display: flex;
  max-width: 980px;

  flex-direction: column;
  align-items: center;
}

.download-section .section-kicker {
  margin-bottom: 26px;
  text-align: center;
}

.download-section h2 {
  max-width: 900px;
  margin: 0 auto;

  letter-spacing: -0.04em;
  line-height: 1;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 400;
}

.download-section h2 span {
  display: block;
  margin-top: 8px;

  color: var(--gold-light);
  font-style: italic;
}

.download-description {
  max-width: 680px;
  margin: 34px auto 0;

  color: var(--text-secondary);

  line-height: 1.75;
  font-size: 17px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 46px;

  justify-content: center;
}

.store-button {
  display: flex;
  min-width: 210px;
  min-height: 68px;
  padding: 11px 24px;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  border: 1px solid rgba(201, 166, 90, 0.2);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.store-button-label {
  color: var(--text-muted);

  line-height: 1;
  font-size: 10px;
  font-weight: 500;
}

.store-button strong {
  margin-top: 6px;

  color: var(--text-primary);

  line-height: 1;
  font-size: 20px;
  font-weight: 600;
}

.store-button-disabled {
  cursor: default;
  opacity: 0.78;
}

.download-note {
  margin: 24px 0 0;

  color: var(--text-muted);

  letter-spacing: 0.04em;
  font-size: 12px;
}

.download-glow {
  position: absolute;
  z-index: 0;
  bottom: -310px;
  left: 50%;

  width: 900px;
  height: 620px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(225, 196, 127, 0.18) 0%,
      rgba(201, 166, 90, 0.08) 36%,
      rgba(201, 166, 90, 0.025) 58%,
      transparent 76%
    );

  filter: blur(32px);

  pointer-events: none;
  transform: translateX(-50%);
}


/* 11. FOOTER
   ========================================================= */

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border-soft);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;

  color: var(--text-muted);

  font-size: 12px;
}

.footer-identity {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;

  transition: color var(--transition);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold);
}


/* 12. RESPONSIVO — DESKTOP MENOR
   ========================================================= */

@media (max-width: 1040px) {
  .main-navigation {
    gap: 20px;
  }

  .main-navigation > a {
    font-size: 12px;
  }

  .hero-grid {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .hero-content,
  .hero h1 {
    max-width: 920px;
  }

  .hero-description {
    max-width: 700px;
  }

  .discover-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 42px;
  }

  .discover-phone {
    width: min(490px, 100%);
  }

  .organize-section {
    padding: 120px 0;
  }

  .organize-grid {
    grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
    gap: 48px;
  }

  .organize-visual {
    min-height: 610px;
  }

  .organize-phone {
    width: min(470px, 100%);
  }

  .organize-features {
    grid-template-columns: 1fr;
  }

  .organize-feature {
    min-height: auto;
  }
}


/* 13. RESPONSIVO — TABLET / MOBILE
   ========================================================= */

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .menu-toggle {
    z-index: 110;
    display: block;
  }

  .menu-toggle.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    z-index: 100;
    inset: 0;

    display: flex;
    padding: 110px 28px 40px;

    flex-direction: column;
    align-items: flex-start;
    gap: 26px;

    visibility: hidden;
    opacity: 0;

    background: rgba(8, 8, 8, 0.98);

    transform: translateY(-16px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-navigation > a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
  }

  .main-navigation .navigation-cta {
    margin-top: 18px;
    font-family: inherit;
    font-size: 14px;
  }

  .hero {
    min-height: auto;

    background-position: 72% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(7, 7, 6, 0.92) 0%,
        rgba(7, 7, 6, 0.78) 52%,
        rgba(7, 7, 6, 0.94) 100%
      );
  }

  .hero-grid {
    min-height: auto;

    padding-top: 66px;
    padding-bottom: 80px;
  }

  .hero h1 {
    max-width: 100%;

    line-height: 1.01;
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero h1 span {
    margin-top: 6px;
  }

  .hero-description {
    max-width: 100%;
    margin-top: 30px;

    line-height: 1.68;
    font-size: 16px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 32px;
  }

  .hero-highlights > div {
    min-height: auto;
    padding: 16px 18px;
  }

  .hero-highlights > div + div {
    border-top: 1px solid rgba(201, 166, 90, 0.18);
    border-left: 0;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .positioning-grid,
  .discover-grid,
  .organize-grid {
    grid-template-columns: 1fr;
  }

  .positioning-grid {
    gap: 44px;
  }

  .discover-section {
    padding: 105px 0 0;
  }

  .discover-grid {
    gap: 28px;
  }

  .discover-content {
    max-width: 680px;
    padding-bottom: 10px;
  }

  .discover-description {
    font-size: 16px;
  }

  .discover-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .discover-features > div {
    min-height: 104px;
    padding: 18px 16px;
  }

  .discover-features > div + div {
    border-left: 1px solid rgba(201, 166, 90, 0.14);
  }

  .discover-visual {
    min-height: auto;
    padding-top: 40px;
  }

  .discover-phone {
    width: min(440px, 94%);
    margin-bottom: -10px;
  }

  .discover-visual::after {
    width: 330px;
  }

  .organize-section {
    padding: 105px 0;
  }

  .organize-grid {
    gap: 48px;
  }

  .organize-content {
    order: 1;
    max-width: 680px;
  }

  .organize-visual {
    order: 2;

    min-height: auto;
    padding-top: 12px;
  }

  .organize-description {
    font-size: 16px;
  }

  .organize-phone {
    width: min(440px, 94%);
  }

  .organize-visual::before {
    width: 470px;
    height: 470px;
  }

  .organize-visual::after {
    bottom: -2%;
    width: 320px;
  }

  .download-section {
    min-height: auto;
    padding: 110px 0;
  }

  .download-section h2 {
    font-size: clamp(48px, 10vw, 70px);
  }

  .download-description {
    max-width: 620px;
  }
}


/* 14. RESPONSIVO — CELULARES
   ========================================================= */

@media (max-width: 560px) {
  .brand-text strong {
    font-size: 15px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .hero-grid {
    padding-top: 54px;
    padding-bottom: 68px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
    letter-spacing: 0.18em;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 59px);
  }

  .hero-description {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .download-section {
    padding: 92px 0;
  }

  .download-section h2 {
    font-size: clamp(43px, 12.5vw, 58px);
  }

  .download-description {
    margin-top: 26px;

    line-height: 1.7;
    font-size: 15px;
  }

  .download-actions {
    width: 100%;
    margin-top: 38px;

    flex-direction: column;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    align-items: center;
  }

  .download-glow {
    bottom: -240px;

    width: 580px;
    height: 460px;
  }

.positioning-section {
  padding: 92px 0;
}

.positioning-section h2 {
  font-size: 39px;
}

  .positioning-copy p {
    font-size: 15px;
  }

  .discover-section {
    padding-top: 90px;
  }

  .discover-section h2,
  .organize-section h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .discover-description,
  .organize-description {
    margin-top: 26px;
    line-height: 1.7;
  }

.discover-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
}

.discover-features > div {
  min-height: 104px;
  padding: 18px 16px;
}

.discover-features > div + div {
  border-left: 1px solid rgba(201, 166, 90, 0.14);
}

  .discover-visual {
    padding-top: 30px;
  }

  .discover-phone {
    width: min(370px, 92%);
  }

  .discover-visual::before {
    width: 350px;
    height: 350px;
  }

  .discover-visual::after {
    width: 260px;
    height: 54px;
  }

  .organize-section {
    padding: 90px 0;
  }

  .organize-features {
    margin-top: 38px;
  }

  .organize-feature {
    min-height: auto;
    padding: 22px 20px;
  }

  .organize-link {
    margin-top: 32px;
  }

  .organize-phone {
    width: min(360px, 92%);
  }

  .organize-visual::before {
    width: 350px;
    height: 350px;
  }

  .organize-visual::after {
    width: 250px;
    height: 52px;
  }

    .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .footer-legal {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

.store-button:not(.store-button-disabled) {
  cursor: pointer;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.store-button:not(.store-button-disabled):hover,
.store-button:not(.store-button-disabled):focus-visible {
  border-color: rgba(201, 166, 90, 0.42);
  background: rgba(201, 166, 90, 0.055);

  transform: translateY(-3px);
}

/* 15. ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
