/* =========================================================
   GOSTO DE RICA
   Landing Page - style.css
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

  /* ======================================================
     LARANJA GOSTO DE RICA
  ====================================================== */

  --green-950: #6b2500;
  --green-900: #8f3100;
  --green-800: #b64000;
  --green-700: #e65300;
  --green-600: #ff6a00;

  --orange-950: #642300;
  --orange-900: #8e3000;
  --orange-800: #ba4100;
  --orange-700: #e65300;
  --orange-600: #ff6a00;
  --orange-500: #ff7a1a;
  --orange-400: #ff9a4d;

  /* ======================================================
     FUNDOS
  ====================================================== */

  --beige-50: #fffdf9;
  --beige-100: #fff8ef;
  --beige-200: #ffecda;
  --beige-300: #ffdcc0;

  /* ======================================================
     MARRONS
  ====================================================== */

  --brown-900: #321d14;
  --brown-700: #65463a;
  --brown-500: #97756a;

  /* ======================================================
     COMPLEMENTARES
  ====================================================== */

  --pink-100: #fff0e7;
  --pink-200: #ffe1d0;

  --gold-500: #cf9b4c;
  --gold-400: #deb46e;
  --gold-300: #f0d39d;

  --white: #ffffff;

  /* ======================================================
     TEXTOS
  ====================================================== */

  --text-primary: #33261f;
  --text-secondary: #735f54;
  --text-muted: #9b8a80;

  /* ======================================================
     BORDAS
  ====================================================== */

  --border-soft:
    rgba(93, 54, 32, 0.09);

  --border-green:
    rgba(255, 106, 0, 0.18);

  /* ======================================================
     SOMBRAS
  ====================================================== */

  --shadow-sm:
    0 8px 30px
    rgba(72, 37, 18, 0.06);

  --shadow-md:
    0 18px 55px
    rgba(95, 45, 15, 0.10);

  --shadow-lg:
    0 28px 90px
    rgba(123, 47, 0, 0.18);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 42px;

  --container: 1180px;

  --font-body:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --font-display:
    "Playfair Display",
    Georgia,
    serif;
}

/* =========================================================
   BASE
========================================================= */

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;

  color: var(--text-primary);
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      #fbf6ef 38%,
      #fffdf9 100%
    );

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

main,
footer {
  position: relative;
  z-index: 2;
}

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

  margin-inline: auto;
}

.narrow-container {
  max-width: 780px;
}


/* =========================================================
   BACKGROUND
========================================================= */

.page-background {
  position: fixed;
  inset: 0;
  z-index: 0;

  overflow: hidden;
  pointer-events: none;
}

.background-orb {
  position: absolute;

  width: 440px;
  height: 440px;

  border-radius: 50%;

  filter: blur(100px);
  opacity: 0.24;
}

.background-orb-one {
  top: -180px;
  right: -180px;

  background: var(--gold-300);
}

.background-orb-two {
  top: 720px;
  left: -240px;

  background: var(--pink-200);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  padding:
    32px
    0
    72px;

  text-align: center;
}

.hero-container {
  max-width: 870px;
}

.brand {
  display: flex;
  justify-content: center;

  margin-bottom: 28px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 24px;
  padding: 9px 15px;

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

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;

  color: var(--green-900);
  background: rgba(255, 255, 255, 0.7);

  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-badge-dot {
  position: relative;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--green-700);
}

.hero-badge-dot::after {
  content: "";

  position: absolute;
  inset: -4px;

  border: 1px solid rgba(50, 112, 82, 0.26);
  border-radius: 50%;

  animation:
    badgePulse
    1.8s
    ease-out
    infinite;
}

@keyframes badgePulse {

  0% {
    transform: scale(0.7);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.hero-title {
  max-width: 850px;
  margin-inline: auto;

  font-family: var(--font-display);
  font-size: clamp(
    46px,
    7vw,
    78px
  );

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

  color: var(--brown-900);
}

.hero-title span {
  position: relative;
  display: inline-block;

  color: var(--green-800);
}

.hero-title span::after {
  content: "";

  position: absolute;
  left: 5%;
  right: 2%;
  bottom: -3px;

  height: 10px;

  z-index: -1;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      rgba(216, 189, 135, 0.2),
      rgba(216, 189, 135, 0.55)
    );

  transform: rotate(-1.5deg);
}

.hero-description {
  max-width: 680px;

  margin:
    26px
    auto
    0;

  font-size: 18px;
  line-height: 1.75;

  color: var(--text-secondary);
}

.hero-description strong {
  color: var(--green-900);
}

.hero-cta-wrapper {
  display: flex;
  justify-content: center;

  margin-top: 34px;
}


/* =========================================================
   CTA
========================================================= */

.cta-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  width: min(
    100%,
    470px
  );

  min-height: 76px;

  padding:
    14px
    20px;

  overflow: hidden;

  border-radius: 20px;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--green-700),
      var(--green-950)
    );

  box-shadow:
    0 18px 42px
    rgba(29, 73, 54, 0.23);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.cta-button::before {
  content: "";

  position: absolute;
  top: 0;
  left: -85%;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(
      110deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );

  transform: skewX(-20deg);

  transition:
    left 0.55s ease;
}

.cta-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 23px 55px
    rgba(29, 73, 54, 0.3);
}

.cta-button:hover::before {
  left: 130%;
}

.cta-button:active {
  transform: translateY(0);
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  border-radius: 13px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.cta-icon svg {
  width: 25px;
  height: 25px;
}

.cta-copy {
  display: flex;
  flex: 1;

  flex-direction: column;

  text-align: left;
}

.cta-copy strong {
  font-size: 16px;
  line-height: 1.3;
}

.cta-copy small {
  margin-top: 2px;

  font-size: 12px;

  opacity: 0.7;
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  font-size: 20px;

  background: rgba(255, 255, 255, 0.1);
}

.cta-button-secondary {
  margin-top: 28px;
}


/* =========================================================
   TRUST
========================================================= */

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;

  margin-top: 18px;

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

  color: var(--text-muted);
}


/* =========================================================
   SCARCITY
========================================================= */

.scarcity-section {
  padding:
    0
    0
    40px;
}

.scarcity-card {
  max-width: 880px;

  margin-inline: auto;

  padding: 25px;

  border:
    1px solid
    rgba(202, 168, 103, 0.25);

  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(251, 246, 238, 0.9)
    );

  box-shadow: var(--shadow-md);

  backdrop-filter: blur(18px);
}

.scarcity-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scarcity-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 50px;

  width: 50px;
  height: 50px;

  border-radius: 16px;

  font-size: 23px;

  background:
    linear-gradient(
      135deg,
      #fff0d7,
      #f8e0c7
    );
}

.scarcity-copy {
  flex: 1;
}

.scarcity-eyebrow {
  margin-bottom: 2px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--brown-500);
}

.scarcity-title {
  font-size: 17px;
  line-height: 1.4;

  color: var(--brown-900);
}

.occupancy {
  margin-top: 22px;
}

.occupancy-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 8px;

  font-size: 13px;

  color: var(--text-secondary);
}

.occupancy-header strong {
  color: var(--green-800);
}

.occupancy-track {
  position: relative;

  height: 11px;

  overflow: hidden;

  border-radius: 999px;

  background: #e9e0d5;
}

.occupancy-progress {
  width: 0%;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--green-600),
      var(--green-900)
    );

  box-shadow:
    inset 0 0 0 1px
    rgba(255, 255, 255, 0.08);

  transition:
    width 1s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.occupancy-text {
  margin-top: 9px;

  font-size: 12px;

  color: var(--text-muted);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding:
    82px
    0;
}

.section-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;

  color: var(--green-700);
}

.section-title {
  font-family: var(--font-display);

  font-size: clamp(
    34px,
    5vw,
    50px
  );

  line-height: 1.1;
  letter-spacing: -0.035em;

  color: var(--brown-900);
}

.section-description {
  margin-top: 20px;

  font-size: 17px;
  line-height: 1.8;

  color: var(--text-secondary);
}

.section-description strong {
  color: var(--brown-900);
}

.section-heading {
  max-width: 650px;

  margin:
    0
    auto
    38px;

  text-align: center;
}


/* =========================================================
   PROBLEM
========================================================= */

.section-problem {
  text-align: center;
}


/* =========================================================
   BENEFITS
========================================================= */

.section-benefits {
  position: relative;
}

.benefits-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 20px;
}

.benefit-card {
  padding:
    30px
    26px;

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

  border-radius: var(--radius-lg);

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

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);

  border-color: var(--border-green);

  box-shadow: var(--shadow-md);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  margin-bottom: 22px;

  border-radius: 16px;

  font-size: 23px;

  background:
    linear-gradient(
      145deg,
      var(--beige-100),
      var(--pink-100)
    );
}

.benefit-card h3 {
  margin-bottom: 10px;

  font-family: var(--font-display);

  font-size: 23px;
  line-height: 1.25;

  color: var(--brown-900);
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.75;

  color: var(--text-secondary);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.section-experience {
  padding-top: 55px;
}

.experience-card {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(300px, 0.9fr);

  gap: 50px;

  align-items: center;

  padding:
    60px;

  overflow: hidden;

  border-radius: var(--radius-xl);

  background:
    linear-gradient(
      135deg,
      var(--green-950),
      var(--green-800)
    );

  box-shadow: var(--shadow-lg);
}

.experience-card::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -150px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    rgba(216, 189, 135, 0.12);
}

.experience-card .section-eyebrow {
  color: var(--gold-300);
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-content h2 {
  font-family: var(--font-display);

  font-size: clamp(
    35px,
    5vw,
    54px
  );

  line-height: 1.05;
  letter-spacing: -0.035em;

  color: var(--white);
}

.experience-content > p {
  max-width: 540px;

  margin-top: 20px;

  font-size: 16px;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.7);
}

.experience-list {
  display: grid;
  gap: 11px;

  margin-top: 26px;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 10px;

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

  color: rgba(255, 255, 255, 0.82);
}

.experience-list li span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  font-size: 11px;

  color: var(--green-950);
  background: var(--gold-300);
}


/* =========================================================
   PHONE MOCKUP
========================================================= */

.experience-visual {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: min(
    100%,
    330px
  );

  padding:
    10px;

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.15);

  border-radius: 38px;

  background: #101a16;

  box-shadow:
    0 30px 70px
    rgba(0, 0, 0, 0.26);

  transform: rotate(2deg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 11px;

  padding:
    16px;

  border-radius:
    28px
    28px
    0
    0;

  background: #f7f5ef;
}

.phone-avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 39px;

  width: 39px;
  height: 39px;

  border-radius: 50%;

  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;

  color: var(--gold-300);
  background: var(--green-900);
}

.phone-top strong,
.phone-top small {
  display: block;
}

.phone-top strong {
  font-size: 12px;
  line-height: 1.2;

  color: #272521;
}

.phone-top small {
  margin-top: 2px;

  font-size: 10px;

  color: #8e8a82;
}

.phone-chat {
  min-height: 390px;

  padding:
    18px
    14px;

  background:
    linear-gradient(
      rgba(243, 239, 228, 0.92),
      rgba(243, 239, 228, 0.92)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(54, 98, 77, 0.05),
      rgba(54, 98, 77, 0.05) 5px,
      transparent 5px,
      transparent 10px
    );
}

.chat-date {
  width: max-content;

  margin:
    0
    auto
    18px;

  padding:
    5px
    10px;

  border-radius: 8px;

  font-size: 9px;

  color: #6d6a64;
  background: rgba(255, 255, 255, 0.88);
}

.chat-message {
  position: relative;

  width: 86%;

  margin-bottom: 10px;

  padding:
    11px
    12px
    17px;

  border-radius:
    7px
    14px
    14px
    14px;

  font-size: 11px;
  line-height: 1.5;

  color: #33302c;
  background: #ffffff;

  box-shadow:
    0 3px 10px
    rgba(48, 45, 40, 0.06);
}

.chat-author {
  display: block;

  margin-bottom: 4px;

  font-size: 10px;
  font-weight: 800;

  color: var(--green-700);
}

.chat-product {
  margin-top: 10px;

  padding:
    12px;

  border-radius: 10px;

  font-size: 10px;
  font-weight: 700;

  background: var(--beige-100);
}

.chat-time {
  position: absolute;
  right: 8px;
  bottom: 4px;

  font-size: 8px;

  color: #9c9891;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.final-cta-card {
  position: relative;

  padding:
    55px
    38px;

  overflow: hidden;

  border:
    1px solid
    rgba(202, 168, 103, 0.2);

  border-radius: var(--radius-xl);

  text-align: center;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(234, 214, 174, 0.35),
      transparent 42%
    ),
    var(--white);

  box-shadow: var(--shadow-md);
}

.final-cta-card::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.25),
      transparent
    );
}

.final-cta-card > * {
  position: relative;
  z-index: 2;
}

.final-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  margin:
    0
    auto
    18px;

  border-radius: 18px;

  font-size: 24px;

  background:
    linear-gradient(
      135deg,
      var(--pink-100),
      var(--beige-200)
    );
}

.final-cta-card h2 {
  font-family: var(--font-display);

  font-size: clamp(
    37px,
    5vw,
    54px
  );

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

  color: var(--brown-900);
}

.final-cta-card h2 span {
  color: var(--green-800);
}

.final-cta-card > p {
  max-width: 600px;

  margin:
    20px
    auto
    30px;

  font-size: 16px;
  line-height: 1.75;

  color: var(--text-secondary);
}

.final-cta-card .cta-button {
  margin-inline: auto;
}

.final-cta-card .cta-disclaimer {
  margin:
    13px
    auto
    0;

  font-size: 11px;

  color: var(--text-muted);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding:
    36px
    0
    115px;

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

  text-align: center;
}

.footer-container {
  max-width: 700px;
}

.footer-brand {
  display: flex;
  justify-content: center;

  margin-bottom: 18px;
}

.footer-brand img {
  width: auto;
  height: 42px;
}

.footer p {
  font-size: 12px;
  line-height: 1.7;

  color: var(--text-muted);
}

.footer-disclaimer {
  max-width: 590px;

  margin:
    12px
    auto
    0;

  opacity: 0.85;
}

.footer-link {
  display: inline-block;

  margin-top: 14px;

  font-size: 12px;
  font-weight: 700;

  color: var(--green-700);

  transition:
    opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.7;
}


/* =========================================================
   FLOATING CTA
========================================================= */

.floating-cta {
  position: fixed;

  left: 50%;
  bottom:
    calc(
      14px +
      env(safe-area-inset-bottom)
    );

  z-index: 999;

  width: min(
    calc(100% - 28px),
    460px
  );

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(30px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

.floating-cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  min-height: 61px;

  padding:
    10px
    20px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 18px;

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

  color: var(--white);

  background:
    rgba(22, 56, 42, 0.96);

  box-shadow:
    0 15px 40px
    rgba(21, 48, 37, 0.32);

  backdrop-filter: blur(15px);
}

.floating-cta-button strong {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.11);
}


/* =========================================================
   NOSCRIPT
========================================================= */

.noscript-message {
  position: fixed;
  left: 15px;
  right: 15px;
  bottom: 15px;

  z-index: 1000;

  padding: 14px;

  border-radius: 12px;

  text-align: center;
  font-size: 13px;

  color: #ffffff;
  background: #9f3f3f;
}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

a:focus-visible {
  outline:
    3px solid
    rgba(202, 168, 103, 0.7);

  outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (
  max-width: 900px
) {

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    max-width: 620px;

    margin-inline: auto;
  }

  .experience-card {
    grid-template-columns: 1fr;

    padding:
      48px
      32px;
  }

  .experience-content {
    text-align: center;
  }

  .experience-content > p {
    margin-inline: auto;
  }

  .experience-list {
    max-width: 410px;

    margin-inline: auto;
    margin-top: 26px;

    text-align: left;
  }

  .experience-content .cta-button {
    margin-inline: auto;
  }

  .experience-visual {
    margin-top: 15px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (
  max-width: 640px
) {

  body {
    font-size: 15px;
  }

  .container {
    width:
      calc(
        100% - 28px
      );
  }

  .hero {
    padding:
      22px
      0
      52px;
  }

  .brand {
    margin-bottom: 22px;
  }

  .brand-logo {
    height: 53px;
  }

  .hero-badge {
    margin-bottom: 19px;

    padding:
      8px
      13px;

    font-size: 11px;
  }

  .hero-title {
    font-size:
      clamp(
        41px,
        12vw,
        58px
      );
  }

  .hero-description {
    margin-top: 21px;

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

  .hero-cta-wrapper {
    margin-top: 27px;
  }

  .cta-button {
    width: 100%;

    min-height: 70px;

    padding:
      11px
      13px;

    border-radius: 18px;
  }

  .cta-icon {
    flex-basis: 39px;

    width: 39px;
    height: 39px;

    border-radius: 12px;
  }

  .cta-icon svg {
    width: 23px;
    height: 23px;
  }

  .cta-copy strong {
    font-size: 14px;
  }

  .cta-copy small {
    font-size: 10px;
  }

  .cta-arrow {
    flex-basis: 34px;

    width: 34px;
    height: 34px;

    font-size: 17px;
  }

  .hero-trust {
    gap:
      5px
      12px;

    margin-top: 15px;

    font-size: 10px;
  }

  .scarcity-section {
    padding-bottom: 15px;
  }

  .scarcity-card {
    padding: 19px;

    border-radius: 24px;
  }

  .scarcity-top {
    align-items: flex-start;
    gap: 12px;
  }

  .scarcity-icon {
    flex-basis: 43px;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    font-size: 19px;
  }

  .scarcity-eyebrow {
    font-size: 10px;
  }

  .scarcity-title {
    font-size: 14px;
  }

  .occupancy {
    margin-top: 18px;
  }

  .section {
    padding:
      60px
      0;
  }

  .section-eyebrow {
    margin-bottom: 11px;

    font-size: 10px;
  }

  .section-title {
    font-size:
      clamp(
        34px,
        10vw,
        44px
      );
  }

  .section-description {
    margin-top: 16px;

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

  .section-heading {
    margin-bottom: 27px;
  }

  .benefits-grid {
    gap: 14px;
  }

  .benefit-card {
    padding:
      24px
      21px;

    border-radius: 23px;
  }

  .benefit-icon {
    width: 46px;
    height: 46px;

    margin-bottom: 17px;

    border-radius: 14px;

    font-size: 20px;
  }

  .benefit-card h3 {
    font-size: 21px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .section-experience {
    padding-top: 35px;
  }

  .experience-card {
    gap: 36px;

    padding:
      38px
      20px;

    border-radius: 30px;
  }

  .experience-content h2 {
    font-size:
      clamp(
        36px,
        10vw,
        46px
      );
  }

  .experience-content > p {
    font-size: 14px;
  }

  .experience-list {
    gap: 9px;
  }

  .experience-list li {
    font-size: 12px;
  }

  .phone-mockup {
    max-width: 285px;
  }

  .phone-chat {
    min-height: 330px;
  }

  .final-cta-section {
    padding-top: 45px;
    padding-bottom: 70px;
  }

  .final-cta-card {
    padding:
      38px
      20px;

    border-radius: 28px;
  }

  .final-cta-card h2 {
    font-size:
      clamp(
        36px,
        10vw,
        47px
      );
  }

  .final-cta-card > p {
    margin:
      17px
      auto
      25px;

    font-size: 14px;
  }

  .footer {
    padding-bottom: 105px;
  }

  .footer-brand img {
    height: 36px;
  }

}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (
  min-width: 1200px
) {

  .hero {
    padding-top: 38px;
  }

  .hero-description {
    font-size: 19px;
  }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (
  prefers-reduced-motion: reduce
) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}
/* =========================================================
   GOSTO DE RICA
   ORANGE PREMIUM OVERRIDES
========================================================= */


/* =========================================================
   FUNDO
========================================================= */

body {

  background:

    radial-gradient(
      circle at 90% 0%,
      rgba(255, 153, 77, 0.12),
      transparent 34%
    ),

    radial-gradient(
      circle at 0% 38%,
      rgba(255, 209, 168, 0.18),
      transparent 36%
    ),

    linear-gradient(
      180deg,
      #fffdf9 0%,
      #fff8f1 48%,
      #fffdf9 100%
    );

}


/* =========================================================
   ORBS
========================================================= */

.background-orb-one {

  background:
    rgba(
      255,
      106,
      0,
      0.42
    );

}

.background-orb-two {

  background:
    rgba(
      255,
      183,
      122,
      0.30
    );

}


/* =========================================================
   BADGE HERO
========================================================= */

.hero-badge {

  color:
    var(--orange-800);

  border-color:
    rgba(
      255,
      106,
      0,
      0.18
    );

  background:
    rgba(
      255,
      250,
      245,
      0.90
    );

}

.hero-badge-dot {

  background:
    var(--orange-600);

}

.hero-badge-dot::after {

  border-color:
    rgba(
      255,
      106,
      0,
      0.35
    );

}


/* =========================================================
   HEADLINE
========================================================= */

.hero-title span {

  color:
    var(--orange-600);

}

.hero-title span::after {

  background:

    linear-gradient(
      90deg,

      rgba(
        255,
        106,
        0,
        0.08
      ),

      rgba(
        255,
        106,
        0,
        0.30
      )

    );

}


/* =========================================================
   BOTÕES PRINCIPAIS
========================================================= */

.cta-button {

  background:

    linear-gradient(
      135deg,
      #ff7a18 0%,
      #ff5a00 52%,
      #d94800 100%
    );

  box-shadow:

    0 18px 42px
    rgba(
      222,
      75,
      0,
      0.27
    );

}

.cta-button:hover {

  box-shadow:

    0 25px 58px
    rgba(
      222,
      75,
      0,
      0.36
    );

}


/* =========================================================
   SCARCITY CARD
========================================================= */

.scarcity-card {

  position: relative;

  overflow: hidden;

  border:

    1px solid
    rgba(
      255,
      106,
      0,
      0.18
    );

  background:

    linear-gradient(
      135deg,

      rgba(
        255,
        255,
        255,
        0.98
      ),

      rgba(
        255,
        244,
        233,
        0.95
      )

    );

  box-shadow:

    0 20px 60px
    rgba(
      142,
      48,
      0,
      0.10
    );

}


.scarcity-card::before {

  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  top: -150px;
  right: -110px;

  border-radius: 50%;

  pointer-events: none;

  background:

    radial-gradient(
      circle,

      rgba(
        255,
        106,
        0,
        0.18
      ),

      transparent 70%
    );

}


.scarcity-icon {

  background:

    linear-gradient(
      135deg,
      #fff1e4,
      #ffd8bb
    );

}


/* =========================================================
   PORCENTAGEM
========================================================= */

.occupancy-header strong {

  font-size: 18px;

  color:
    var(--orange-600);

}


/* =========================================================
   TRACK
========================================================= */

.occupancy-track {

  height: 13px;

  position: relative;

  overflow: hidden;

  border-radius: 999px;

  background:
    #f0dfd3;

  box-shadow:

    inset
    0 2px 5px
    rgba(
      88,
      45,
      22,
      0.07
    );

}


/* =========================================================
   BARRA LARANJA
========================================================= */

.occupancy-progress {

  position: relative;

  width: 0%;
  height: 100%;

  overflow: hidden;

  border-radius: inherit;

  background:

    linear-gradient(
      90deg,

      #ff8a30 0%,

      #ff6a00 45%,

      #e94e00 100%
    );

  box-shadow:

    0 0 18px
    rgba(
      255,
      106,
      0,
      0.30
    );

}


/* =========================================================
   BRILHO VIVO DA BARRA
========================================================= */

.occupancy-progress::after {

  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  left: -45%;

  width: 38%;

  border-radius: 999px;

  background:

    linear-gradient(
      90deg,

      transparent,

      rgba(
        255,
        255,
        255,
        0.20
      ),

      rgba(
        255,
        255,
        255,
        0.85
      ),

      rgba(
        255,
        255,
        255,
        0.20
      ),

      transparent
    );

  transform:
    skewX(-18deg);

}


.occupancy-progress.is-active::after {

  animation:

    occupancyShine
    2.2s
    ease-in-out
    infinite;

}


@keyframes occupancyShine {

  0% {

    left: -45%;

  }

  55% {

    left: 115%;

  }

  100% {

    left: 115%;

  }

}


/* =========================================================
   PULSO MUITO SUTIL
========================================================= */

.occupancy-progress.is-active {

  animation:

    occupancyPulse
    2.8s
    ease-in-out
    infinite;

}


@keyframes occupancyPulse {

  0%,
  100% {

    filter:
      brightness(1);

  }

  50% {

    filter:
      brightness(1.08);

  }

}


/* =========================================================
   CARDS
========================================================= */

.benefit-card {

  background:

    linear-gradient(
      145deg,

      rgba(
        255,
        255,
        255,
        0.95
      ),

      rgba(
        255,
        248,
        240,
        0.92
      )

    );

}

.benefit-card:hover {

  border-color:

    rgba(
      255,
      106,
      0,
      0.20
    );

}


/* =========================================================
   ÍCONES BENEFÍCIOS
========================================================= */

.benefit-icon {

  background:

    linear-gradient(
      145deg,
      #fff4e8,
      #ffe2ca
    );

}


/* =========================================================
   BLOCO ESCURO
========================================================= */

.experience-card {

  background:

    linear-gradient(
      145deg,
      #662300 0%,
      #9a3300 52%,
      #c84500 100%
    );

  box-shadow:

    0 30px 90px
    rgba(
      122,
      42,
      0,
      0.24
    );

}


.experience-card::before {

  background:

    rgba(
      255,
      184,
      119,
      0.13
    );

}


/* =========================================================
   CHECKS
========================================================= */

.experience-list li span {

  color:
    #873100;

  background:
    #ffd5ad;

}


/* =========================================================
   PHONE AVATAR
========================================================= */

.phone-avatar {

  color:
    #fff4e7;

  background:

    linear-gradient(
      135deg,
      #ff6a00,
      #b93c00
    );

}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta-card {

  border-color:

    rgba(
      255,
      106,
      0,
      0.16
    );

  background:

    radial-gradient(
      circle at 50% -5%,

      rgba(
        255,
        172,
        102,
        0.25
      ),

      transparent 45%
    ),

    #ffffff;

}


.final-cta-card h2 span {

  color:
    var(--orange-600);

}


/* =========================================================
   CTA FLUTUANTE
========================================================= */

.floating-cta-button {

  background:

    linear-gradient(
      135deg,
      #ff720f,
      #e84d00
    );

  box-shadow:

    0 16px 42px
    rgba(
      194,
      60,
      0,
      0.34
    );

}


/* =========================================================
   EYEBROWS
========================================================= */

.section-eyebrow {

  color:
    var(--orange-600);

}


/* =========================================================
   LINKS
========================================================= */

.footer-link {

  color:
    var(--orange-600);

}


/* =========================================================
   MOBILE
========================================================= */

@media (
  max-width: 640px
) {

  .occupancy-track {

    height: 12px;

  }

  .occupancy-header strong {

    font-size: 17px;

  }

}
/* =========================================================
   LANDING COMPACTA
========================================================= */

.hero-compact {

  padding-bottom: 38px;

}


.hero-compact .hero-container {

  max-width: 760px;

}


.hero-compact .hero-title {

  max-width: 720px;

}


.hero-compact .hero-description {

  max-width: 580px;

}


.compact-benefits {

  padding:
    42px
    0
    48px;

}


.compact-benefits .benefits-grid {

  max-width: 960px;

  margin-inline: auto;

}


.compact-benefits .benefit-card {

  padding:
    24px
    22px;

}


.compact-benefits .benefit-icon {

  margin-bottom: 15px;

}


.compact-benefits .benefit-card h3 {

  font-size: 20px;

}


.compact-final-section {

  padding:
    0
    0
    50px;

}


.compact-final-card {

  display: flex;

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

  gap: 24px;

  max-width: 900px;

  margin-inline: auto;

  padding:
    24px
    28px;

  border:
    1px solid
    rgba(255, 106, 0, 0.14);

  border-radius: 22px;

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

  box-shadow:
    0 15px 40px
    rgba(103, 49, 17, 0.08);

}


.compact-final-copy {

  display: flex;
  flex-direction: column;

}


.compact-final-copy strong {

  font-family:
    var(--font-display);

  font-size: 21px;

  color:
    var(--brown-900);

}


.compact-final-copy span {

  margin-top: 2px;

  font-size: 13px;

  color:
    var(--text-secondary);

}


.compact-final-button {

  display: inline-flex;

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

  gap: 13px;

  flex-shrink: 0;

  min-height: 52px;

  padding:
    10px
    22px;

  border-radius: 14px;

  font-size: 13px;
  font-weight: 800;

  color: #ffffff;

  background:

    linear-gradient(
      135deg,
      #ff7515,
      #e94f00
    );

  box-shadow:

    0 12px 28px
    rgba(220, 73, 0, 0.22);

}


.compact-final-button span {

  font-size: 18px;

}


.compact-footer {

  padding:
    25px
    0
    100px;

}


@media (
  max-width: 640px
) {

  .hero-compact {

    padding-bottom: 30px;

  }


  .compact-benefits {

    padding:
      30px
      0
      35px;

  }


  .compact-benefits .benefit-card {

    padding:
      20px;

  }


  .compact-final-section {

    padding-bottom: 35px;

  }


  .compact-final-card {

    flex-direction: column;

    align-items: stretch;

    gap: 16px;

    padding:
      20px;

    text-align: center;

  }


  .compact-final-copy strong {

    font-size: 19px;

  }


  .compact-final-button {

    width: 100%;

  }

}
/* =========================================================
   CTA PRINCIPAL MAIS FORTE
========================================================= */

.cta-button-strong {

  min-height: 76px;

  padding:
    18px
    28px;

  border-radius: 20px;

  background:

    linear-gradient(
      135deg,
      #ff7a18 0%,
      #ff5a00 55%,
      #d94700 100%
    );

  box-shadow:

    0 18px 45px
    rgba(230, 83, 0, 0.34),

    0 0 0 5px
    rgba(255, 106, 0, 0.08);

}


.cta-button-strong:hover {

  transform:
    translateY(-3px)
    scale(1.01);

  box-shadow:

    0 24px 60px
    rgba(230, 83, 0, 0.40),

    0 0 0 7px
    rgba(255, 106, 0, 0.10);

}


.cta-main-text {

  width: 100%;

  text-align: center;

  font-size: 19px;
  font-weight: 800;

  letter-spacing: 0.04em;

  color: #ffffff;

}


@media (
  max-width: 640px
) {

  .cta-button-strong {

    min-height: 70px;

  }

  .cta-main-text {

    font-size: 17px;

  }

}
/* =========================================================
   CTA WHATSAPP FORTE
========================================================= */

.cta-button-strong {

  position: relative;

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

  gap: 13px;

  min-height: 76px;

  padding:
    18px
    30px;

  border-radius: 20px;

}


/* TEXTO */

.cta-button-strong .cta-main-text {

  width: auto;

  font-size: 19px;

  font-weight: 900;

  line-height: 1;

  letter-spacing: 0.025em;

  color: #ffffff;

  text-align: center;

}


/* ÍCONE WHATSAPP */

.cta-whatsapp-icon {

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

  width: 31px;
  height: 31px;

  flex-shrink: 0;

  color: #ffffff;

}


.cta-whatsapp-icon svg {

  width: 31px;
  height: 31px;

  display: block;

  fill: currentColor;

}


/* MOBILE */

@media (max-width: 640px) {

  .cta-button-strong {

    min-height: 72px;

    gap: 11px;

  }


  .cta-button-strong .cta-main-text {

    font-size: 18px;

    font-weight: 900;

  }


  .cta-whatsapp-icon,
  .cta-whatsapp-icon svg {

    width: 29px;
    height: 29px;

  }

}
/* =========================================================
   CTA PRINCIPAL WHATSAPP - VERSÃO FINAL
========================================================= */

.cta-button-main {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 12px !important;

  width: 100% !important;
  max-width: 470px !important;

  min-height: 76px !important;

  padding: 18px 28px !important;

  border-radius: 20px !important;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      #ff7716 0%,
      #ff5e00 55%,
      #e94c00 100%
    ) !important;

  box-shadow:
    0 18px 45px
    rgba(231, 75, 0, 0.32) !important;
}


.cta-button-main span {
  width: auto !important;

  color: #ffffff !important;

  font-family:
    "DM Sans",
    sans-serif !important;

  font-size: 19px !important;

  font-weight: 900 !important;

  line-height: 1 !important;

  letter-spacing: 0.02em !important;

  text-align: center !important;
}


.cta-main-whatsapp {
  display: block !important;

  width: 30px !important;
  height: 30px !important;

  min-width: 30px !important;

  color: #ffffff !important;

  fill: #ffffff !important;
}


@media (max-width: 640px) {

  .cta-button-main {
    min-height: 74px !important;

    gap: 11px !important;

    padding:
      17px
      22px !important;
  }


  .cta-button-main span {
    font-size: 18px !important;

    font-weight: 900 !important;
  }


  .cta-main-whatsapp {
    width: 29px !important;
    height: 29px !important;

    min-width: 29px !important;
  }

}
