/* ==========================================================================
   DWËLL MUSIC CO — Landing Page
   Fiel ao design Figma: DWELL (Ll4OA7c6MqdteGOsR6vsAa)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Colors */
  --bg-primary: #121417;
  --bg-secondary: #1d1f23;
  --bg-card: rgba(29, 31, 35, 0.4);
  --bg-card-solid: #212121;
  --border-subtle: #303337;
  --border-medium: #4f5358;
  --border-light: rgba(226, 229, 232, 0.4);

  --text-heading: #f2f4f5;
  --text-heading-soft: #e2e5e8;
  --text-body: #a1a5aa;
  --text-body-light: #d2d2d2;
  --text-dark: #101214;

  --gold: #c39c65;
  --gold-soft: rgba(195, 156, 101, 0.8);
  --gold-dark: #724529;
  --orange: #bd791a;
  --green: #6ef47e;
  --green-dark: #6be465;
  --green-check: #45ffa2;
  --red: #9e2a1b;

  /* Type */
  --font-body: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --fs-hero: clamp(2.25rem, 5vw, 3.75rem);
  --fs-h1: clamp(2rem, 4.2vw, 3rem);
  --fs-h2: clamp(1.75rem, 3.4vw, 2.625rem);
  --fs-h3: clamp(1.375rem, 2.4vw, 1.9rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.5625rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-label: 0.75rem;

  /* Layout */
  --container-max: 1232px;
  --gutter: clamp(1.25rem, 3vw, 5rem);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --header-h: 65px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-heading-soft);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

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

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 8px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

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

.eyebrow {
  display: block;
  font-size: var(--fs-label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-heading-soft);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-heading em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.section-heading .gold-italic {
  color: var(--gold);
  font-style: italic;
}

.section-heading .soft {
  background: linear-gradient(to bottom, #f7f9fa, #abaeb2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 46ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

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

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  font-size: 0.9em;
}

.btn-primary {
  background: #f4f4f4;
  color: var(--text-dark);
  box-shadow: 0 14px 42px -14px rgba(0, 0, 0, 0.55);
}

.btn-primary .btn-arrow {
  background: transparent;
  box-shadow: none;
}

.btn-green {
  background: var(--green);
  color: var(--text-dark);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
}

.btn-green .btn-arrow {
  background: #f4faf5;
}

.btn-secondary {
  background: rgba(61, 61, 61, 0.2);
  border: 1px solid rgba(79, 83, 88, 0.84);
  color: var(--text-heading);
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-heading);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  width: 100%;
  justify-content: center;
}

.btn-light {
  background: var(--text-heading-soft);
  color: var(--text-dark);
  font-size: 0.72rem;
  padding: 0.85rem 1.2rem;
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(18, 20, 23, 0.6);
  border-bottom: 1px solid rgb(48, 51, 55, 0.4);
}

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .logo {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.875rem;
  color: var(--text-body);
  transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text-heading);
}

.header-cta {
  background: var(--gold);
  color: var(--text-heading-soft);
  border: 1px solid rgb(266, 229, 232, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   HOME / HERO
   ========================================================================== */
.hero {
  position: relative;
  background: url(../images/hero.png) no-repeat center top / cover;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}


.hero-title {
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(to bottom, #f2f4f5, #c7c7c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-body);
}

.hero-copy {
  font-size: clamp(1.05rem, 1.6vw, 1.5625rem);
  color: var(--text-body-light);
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 0.6rem;
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(242, 244, 245, 0.9);
}

.hero-tags li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-heading-soft);
  flex: none;
}

/* ==========================================================================
   SIDE (orange stats banner)
   ========================================================================== */
.side-banner {
  background: var(--orange);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.side-banner .container {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 2rem);
  align-items: center;
}

.player-mock {
  overflow: hidden;
  max-width: 320px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.player-float {
  animation: float 4s ease-in-out infinite;
  display: block;
  width: 100%;
}


.side-copy .stat-title {
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fefefe;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.side-copy .stat-sub {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fefefe;
  margin-bottom: 0.75rem;
}

.side-copy p {
  font-weight: 400;
  color: #fefefe;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.platform-icons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.platform-icons span {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #8a5a17;
}

/* ==========================================================================
   REALIDADE (quote section)
   ========================================================================== */
.quote-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}

/* Parallax background layer — used by quote-section and final-cta */
.parallax-bg {
  position: absolute;
  inset: -40% 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  will-change: transform;
  z-index: 0;
}

.quote-section>.container,
.final-cta>.container {
  position: relative;
  z-index: 1;
}

.quote-section blockquote {
  max-width: 810px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
  color: #d9d9d9;
}

.quote-section blockquote em {
  color: var(--gold);
  font-style: italic;
}

.quote-section blockquote .dwell {
  font-style: italic;
  color: var(--text-heading);
}

.quote-divider {
  width: 448px;
  height: 1px;
  margin: 4.2rem auto 0;
  background: linear-gradient(to right, transparent, var(--border-medium), transparent);
}

/* ==========================================================================
   COMPARATIVO
   ========================================================================== */
.compare-section {
  background:
    url('../images/COMPARATIVO.png') no-repeat right center / auto 100%,
    var(--bg-primary);
}

/* Two-column layout: left = heading+card, right = badge+card */
.compare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1vw, 0.5rem);
  align-items: stretch;
  margin-top: 0;
}

.compare-left {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding-top: 0;
}

.compare-left .compare-card {
  margin-top: auto;
}

.compare-left .section-heading {
  margin-bottom: 0;
}

.compare-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-badge-outer {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: -1.25rem;
}

.compare-featured-pill {
  background: var(--gold);
  color: #1a0e00;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 1.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(195, 156, 101, 0.35);
}

.compare-right .compare-card {
  width: 100%;
  flex: 1;
}

.compare-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  margin-left: 125px;
}

.compare-card.is-highlight {
  background: linear-gradient(180deg, rgba(226, 229, 232, 0.06), rgba(226, 229, 232, 0));
  border: 1px solid var(--border-light);
  max-width: max-content;
  margin-left: 0px;
  padding-top: 60px;
}

.compare-label {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A1A5AA;
  margin-bottom: 1.75rem;
  font-family: var(--font-mono);
}

.compare-label--spaced {
  margin-top: 0.75rem;
}

.compare-card h3 {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text-heading);
  margin-bottom: 2.5rem;
  max-width: 200px;
}

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

.compare-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  color: var(--text-heading-soft);
}

.compare-list li::before {
  content: "";
  width: 12px;
  height: 3px;
  background: var(--red);
  flex: none;
  border-radius: 2px;
}

.compare-card.is-highlight .compare-list li::before {
  content: "\2022";
  width: auto;
  height: auto;
  background: none;
  color: #45FFA2;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 0;
}

@media (max-width: 900px) {
  .compare-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .compare-card {
    margin-left: 0px;
  }

  .compare-card h3 {
    max-width: 100%;
  }
}

/* ==========================================================================
   ECOSSISTEMA
   ========================================================================== */
.eco-section {
  background: url('../images/ECOSSISTEMA.png') no-repeat center center / cover;
  padding-block: clamp(3rem, 5vw, 5rem);
}

.eco-section>.container>.eyebrow {
  margin-bottom: 2rem;
  display: block;
}

.eco-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1rem, 5vw, 1rem);
  align-items: center;
  margin-top: 0;
}

/* Left column: heading, lead, covers image, CTA */
.eco-covers {
  display: flex;
  flex-direction: column;
}

.eco-covers .section-heading {
  max-width: 450px;
}


.eco-covers .section-heading {
  margin-bottom: 1rem;
}

.eco-covers .section-lead {
  max-width: 100%;
  margin-bottom: 2rem;
}

.eco-covers-img {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}

/* Right column: 3x5 grid */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 170px;
}

.eco-tile {
  background: rgba(55, 58, 65, 0.45);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 1rem;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
}

.eco-tile .num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-heading-soft);
  line-height: 1;
  margin-bottom: 10px;
}

.eco-tile .label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.2;
}

.eco-note {
  text-align: center;
  color: var(--text-body);
  max-width: 580px;
  margin: 2.5rem auto 0;
  font-size: 1rem;
}

.eco-cta {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.eco-cta .btn-green {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem 0.85rem 2rem;
  gap: 0;
}

.eco-cta .btn-green .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-left: 1rem;
  flex-shrink: 0;
}

.eco-cta .btn-green .btn-arrow img {
  width: 20px;
  height: 20px;
}

@media (max-width: 1080px) {
  .eco-covers .section-heading {
    max-width: 100%;
  }

  .eco-grid {
    margin-top: 30px;
  }
}


@media (max-width: 900px) {
  .eco-covers .section-heading {
    max-width: 100%;
  }

  .eco-grid {
    margin-top: 30px;
  }
}

/* ==========================================================================
   MÉTODO
   ========================================================================== */

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  align-items: start;
  margin-top: 2.5rem;
}

#metodo .section-heading {
  max-width: 580px;
}

.method-list {
  border-left: 1px solid var(--border-medium);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-left: 1.35rem;
  margin-left: 10px;
  list-style: none;
}

.method-item {
  position: relative;
}

.method-item .marker {
  position: absolute;
  left: -2.1rem;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--text-heading-soft);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-heading-soft);
}


.method-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 2rem;
  margin-top: -3px;
}

.method-item p {
  font-size: 1em;
  color: var(--text-body);
}

.method-footnote {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.method-footnote em {
  color: var(--gold);
  font-style: normal;
}

/* Right column: phone mockup + ALTAR logo */
.method-media {
  position: relative;
  margin-top: -100px;
}

.method-phone-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.method-altar-logo {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  width: clamp(80px, 10vw, 112px);
}

/* ==========================================================================
   NÚMEROS
   ========================================================================== */
.numbers-section {
  background: var(--bg-secondary);
}

.numbers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 1rem;
}

.numbers-layout .section-heading {
  max-width: 300px;
}

.numbers-copy p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.numbers-copy strong {
  color: var(--text-heading);
}

.numbers-footnote {
  font-size: 0.9rem;
  color: rgba(161, 165, 170, 0.7);
  margin-top: 1.5rem;
  text-align: right;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-cell {
  background: var(--bg-primary);
  padding: 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

.stat-cell:nth-child(3n) {
  border-right: none;
}

.stat-cell:nth-child(n+4) {
  border-bottom: none;
}

.stat-cell.is-highlight {
  background: var(--green-dark);
}

.stat-cell .value {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  background: linear-gradient(to bottom, #f7f9fa, #abaeb2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0px;
}

.stat-cell.is-highlight .value {
  background: linear-gradient(to bottom, #253d19, #24361f);
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-cell .label {
  font-size: 0.8rem;
  color: var(--text-body);
}

.stat-cell.is-highlight .label {
  color: #4e4e4e;
}

/* ==========================================================================
   PLANOS
   ========================================================================== */

.planos {
  background: url(../images/PLANOS.png) center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: start;
}

#planos .section-heading {
  max-width: 460px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card .plan-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-heading-soft);
}

.plan-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.plan-card .plan-desc {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  min-height: 2.6rem;
}

.plan-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-medium), transparent);
  margin-bottom: 1.25rem;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-heading);
  align-items: baseline;
}

.plan-list li::before {
  content: "\2726";
  color: var(--text-heading-soft);
  font-size: 0.65rem;
}

.plan-card.is-featured {
  background: linear-gradient(180deg, rgba(145, 255, 204, 0.08), var(--gold));
  border: 1px solid var(--text-heading-soft);
  position: relative;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
  transform: translateY(-4rem) !important;
  height: calc(100% + 4rem) !important;
}

.plan-card.is-featured .plan-eyebrow,
.plan-card.is-featured h3,
.plan-card.is-featured .plan-desc,
.plan-card.is-featured .plan-list li {
  color: #fff;
}

.plan-card.is-featured h3 {
  font-size: 2.6rem;
}

.plan-card.is-featured .plan-desc {
  font-size: 1rem;
  width: 120%;
}

.plan-card.is-featured .plan-list li {
  font-size: 1rem;
}

.plan-card.is-featured .plan-list li::before {
  color: #fafafa;
}

.plan-card.is-featured .btn-light {
  font-size: 1rem !important;
}

.featured-badge {
  position: absolute;
  width: 184px;
  text-align: center;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (max-width: 1080px) {

  .plan-card.is-featured {
    background: linear-gradient(180deg, rgba(145, 255, 204, 0.08), var(--gold));
    border: 1px solid var(--text-heading-soft);
    position: relative;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
    transform: translateY(0rem);
    height: 100% !important;
  }

  .plan-card.is-featured .plan-desc {
    font-size: 1rem;
    width: 100%;
  }


}

/* ==========================================================================
   TIME DWËLL
   ========================================================================== */
.team-section {
  background: var(--bg-secondary);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(0, 0.55fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.5rem;
}

.team-copy .section-heading {
  width: 300px;
  margin-bottom: 60px;
}

.team-copy p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.team-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.team-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
}

.team-badge h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0rem;
  margin-top: 0px;
}

.team-badge p {
  font-size: 0.72rem;
  color: var(--text-body);
  margin: 0;
}

/* Centre column: large studio photo */
.team-photo-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 83%;
  min-height: 280px;
  margin-top: 100px;
}

.team-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* Right column: smaller photo + method card */
.team-photo-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;

}

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

.method-tag {
  background: rgba(29, 31, 35, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}

.method-tag .tag-label {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-heading-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.method-tag p {
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 400;
}

.method-tag em {
  font-style: italic;
  color: var(--text-heading);
}

@media (max-width: 1080px) {

  .team-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 768px) {

  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-photo-main {
    margin-top: 00px;
  }

  .team-badges {
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  }
}

/* ==========================================================================
   DÚVIDAS (FAQ)
   ========================================================================== */
.faq-section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-heading-soft);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question .icon {
  flex: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item[data-open="true"] .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding-bottom: 1.1rem;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 58ch;
}

/* ==========================================================================
   CTA (final)
   ========================================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(226, 229, 232, 0.1), transparent 60%);
  pointer-events: none;
}

.final-cta .inner {
  position: relative;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 1rem;
  background: linear-gradient(to bottom, #e9e9e9, #c9c9c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta .sub {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(to bottom, #f7f9fa, #abaeb2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta .sub em {
  color: var(--gold);
  font-style: normal;
  -webkit-text-fill-color: var(--gold);
}

.final-cta .btn {
  font-size: 1.8rem;
  padding: 1.2rem 2.4rem;
  min-width: 425px;
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
}

.final-cta .platform-icons {
  justify-content: center;
  margin-top: 2rem;
}

.final-cta .platform-icons span {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-heading-soft);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 2rem 1.5rem;
  background: var(--bg-primary);
}

/* Top row: logo+tagline | nav (centred) | copyright (right) */
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-brand p {
  font-size: 0.72rem;
  color: var(--text-body);
  max-width: 36ch;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-body);
  white-space: nowrap;
}

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

.footer-meta {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(161, 165, 170, 0.5);
  text-align: right;
  white-space: nowrap;
}

/* Bottom: social icons centred with divider */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-social p {
  font-size: 0.88rem;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.social-icons {
  display: flex;
  gap: 1.85rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-card.is-featured {
    transform: none;
    order: -1;
  }

  .eco-layout,
  .method-layout,
  .numbers-layout {
    grid-template-columns: 1fr;
  }

  .method-media,
  .eco-covers {
    margin-top: 1rem;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    aspect-ratio: 16/10;
  }

  .side-banner .container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .compare-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .compare-badge-outer {
    margin-top: 2rem;
  }

  .team-media {
    grid-template-columns: 1fr 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .plan-card.is-featured {
    transform: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .stat-cell:nth-child(3n) {
    border-right: 1px solid var(--border-subtle);
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }

  .stat-cell:nth-child(n+3) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .stat-cell:nth-child(n+5) {
    border-bottom: none;
  }

  .footer-top {

    grid-template-columns: 1fr;

  }
}

@media (max-width: 560px) {
  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }



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

  .hero-actions .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr, ;
  }

  .stat-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--border-subtle) !important;
  }

  .stat-cell:last-child {
    border-bottom: none !important;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 2rem var(--gutter);
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.1rem;
  color: var(--text-heading-soft);
}

.mobile-nav .header-cta {
  display: inline-flex;
  width: fit-content;
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(211, 182, 37, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(211, 182, 37, 0.5);
  }

  70% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

@media (max-width: 560px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}