/* ===== UNIQUE PUJOL — Design System ===== */
:root {
  --bg-main: #F5F0EC;
  --bg-dark: #2D2727;
  --bg-section-alt: #EDE6E0;
  --accent: #5C1D00;
  --accent-hover: #7A2800;
  --accent-light: rgba(92, 29, 0, .08);
  --accent-gold: #C8956C;
  --text-primary: #2D2727;
  --text-secondary: #817B7B;
  --text-muted: #A89E9E;
  --text-light: #D7BEBE;
  --border: #D7BEBE;
  --border-light: rgba(215, 190, 190, .4);
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5A;
  --font-display: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1400px;
  --header-h: 72px;
  --transition: all .4s cubic-bezier(.16, 1, .3, 1);
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit
}

ul,
ol {
  list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0
}

.section {
  position: relative;
  z-index: 10
}

.section .container {
  position: relative;
  z-index: 2
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white)
}

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

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-family: var(--font-body)
}

.section-label--light {
  color: var(--text-light)
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px
}

.section-pad {
  padding: 80px 0
}

@media(min-width:768px) {
  .section-pad {
    padding: 120px 0
  }
}

/* ===== TYPOGRAPHY ===== */
.h-display {
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.04em
}

.h-big {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05
}

.h-medium {
  font-size: clamp(1.5rem, 3vw, 2.5rem)
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary)
}

.body-sm {
  font-size: .875rem;
  line-height: 1.6
}

.mono {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap
}

.btn--primary {
  background: var(--accent);
  color: var(--white)
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 29, 0, .25)
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .3)
}

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: transparent;
  border-radius: 50px;
  padding: 14px 32px
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light)
}

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 32px
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--bg-dark)
}

.btn--large {
  padding: 20px 48px;
  font-size: 1.05rem;
  border-radius: 8px
}

.btn svg,
.btn iconify-icon {
  font-size: 1.3em
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.badge--accent {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light)
}

.badge--gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold)
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .4s cubic-bezier(.16, 1, .3, 1), background .4s, box-shadow .4s, backdrop-filter .4s;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none
}

.header.scrolled {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: rgba(245, 240, 236, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border)
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header__logo img {
  height: 40px;
  width: auto
}

.header__nav {
  display: none;
  gap: 32px
}

.header__nav a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color .3s
}

.header__nav a:hover {
  color: var(--accent)
}

.header__cta .btn {
  padding: 10px 24px;
  font-size: .8rem
}

.header__nav {
  display: flex;
  gap: 32px
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 101;
}

.header__mobile-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media(max-width:767px) {
  .header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-main);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s ease, opacity .4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .header.nav-open .header__nav {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav a {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .header.nav-open .header__mobile-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.nav-open .header__mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.nav-open .header__mobile-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media(min-width:768px) {
  .header__mobile-toggle {
    display: none;
  }
}


.section-watermark {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.section-watermark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  opacity: 0.3;
  filter: grayscale(1) brightness(1.1);
}

@media (max-width: 768px) {
  .section-watermark {
    height: 70%;
    opacity: 0.03;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

@media(min-width:768px) {
  .hero {
    grid-template-columns: 3fr 1fr
  }
}

.hero__carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg-section-alt);
  min-height: 60vh
}

@media(min-width:768px) {
  .hero__carousel {
    min-height: auto;
    border-right: 1px solid var(--border)
  }
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  overflow: hidden
}

.carousel-slide.active {
  opacity: 1
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease-out
}

.carousel-slide.active img {
  transform: scale(1.08)
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(45, 39, 39, .6) 100%);
  pointer-events: none;
  z-index: 1
}

.hero__content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: var(--white)
}

@media(min-width:768px) {
  .hero__content {
    bottom: 48px;
    left: 48px;
    right: 48px
  }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px
}

.hero__stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  min-height: 300px
}

.hero__stat {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: background .4s
}

.hero__stat:last-child {
  border-bottom: none
}

.hero__stat:hover {
  background: var(--white)
}

.hero__stat-icon {
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: 16px
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1
}

.hero__stat-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px
}

/* ===== MARQUEE ===== */
.marquee {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(237, 230, 224, .5)
}

.marquee-container {
  display: flex;
  user-select: none
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 100%;
  animation: marquee-scroll 35s linear infinite
}

.marquee-content span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 24px;
  white-space: nowrap
}

.marquee-content .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-100%)
  }
}

/* ===== STAT CARDS (Oportunidade) ===== */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media(min-width:768px) {
  .opp-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.opp-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  transition: var(--transition)
}

.opp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45, 39, 39, .08)
}

.opp-card__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px
}

.opp-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px
}

.opp-card__label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary)
}

.opp-card__desc {
  font-size: .8rem;
  color: var(--text-secondary);
  margin-top: 8px
}

/* ===== CTA INTERMEDIÁRIO ===== */
.cta-mid {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-dark) 0%, #181515 100%);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.cta-mid__bg {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 149, 108, .08) 0%, transparent 60%);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 1
}

.cta-mid .container {
  position: relative;
  z-index: 2
}

/* ===== DIFERENCIAIS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden
}

@media(min-width:768px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.diff-item {
  padding: 40px 28px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
  position: relative
}

@media(min-width:768px) {
  .diff-item {
    border-right: 1px solid var(--border)
  }
}

.diff-item:hover {
  background: var(--white)
}

.diff-item__icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: transform .5s var(--reveal-ease)
}

.diff-item:hover .diff-item__icon {
  transform: scale(1.15)
}

.diff-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.diff-item__desc {
  font-size: .8rem;
  color: var(--text-secondary);
  line-height: 1.5
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px
}

@media(min-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--reveal-ease), filter .7s ease
}

.gallery-item:hover img {
  transform: scale(1.08)
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 39, 39, .7), transparent);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 20px
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1
}

.gallery-item__label {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* ===== LOCATION ===== */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px
}

@media(min-width:768px) {
  .loc-grid {
    grid-template-columns: 1fr 1fr
  }
}

.loc-list {
  list-style: none
}

.loc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem
}

.loc-list li iconify-icon {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px
}

.loc-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 32px;
  margin-bottom: 8px
}

.loc-category:first-child {
  margin-top: 0
}

/* ===== PLANTAS ===== */
.plantas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px
}

@media(min-width:768px) {
  .plantas-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.planta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition)
}

.planta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45, 39, 39, .08)
}

.planta-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer
}

.planta-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--reveal-ease)
}

.planta-card:hover .planta-card__img img {
  transform: scale(1.05)
}

.planta-card__body {
  padding: 28px
}

.planta-card__tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px
}

.planta-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px
}

.planta-card__area {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px
}

.planta-card__desc {
  font-size: .85rem;
  color: var(--text-secondary)
}

/* ===== AUTHORITY REDESIGN ===== */
.section-authority {
  background-color: var(--bg-main);
  overflow: hidden;
}

.authority-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/fundo-edificio.png');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  filter: grayscale(1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #fdfcfb;
  padding: 48px 32px;
  border-radius: 12px;
  border-top: 1px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(45, 39, 39, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--reveal-ease), box-shadow 0.4s var(--reveal-ease);
  position: relative;
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45, 39, 39, 0.1);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.authority-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 64px 0 48px;
  opacity: 0.5;
}

.authority-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .authority-footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.auth-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.auth-footer-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth-footer-item img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0);
  transition: opacity 0.3s;
}

.auth-footer-item:hover img {
  opacity: 1;
}

.auth-footer-text span {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.auth-footer-text small {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.auth-market-data {
  display: flex;
  gap: 32px;
}

.market-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.market-item iconify-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.market-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 120px;
  line-height: 1.3;
}

/* ===== INVESTOR APPEAL ===== */
.investor-appeal {
  background: linear-gradient(145deg, #1e1b1b 0%, #121010 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.investor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .investor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  border-radius: 12px;
  transition: var(--transition);
  height: 100%;
}

.investor-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.investor-card__icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.investor-card__title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.investor-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.investor-card__text strong {
  color: var(--white);
  font-size: 1.1em;
  font-weight: 800;
}

.investor-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.authority-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.scarcity-trigger {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.investor-appeal .btn--whatsapp {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.investor-appeal .btn--whatsapp:hover {
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}
.urgency {
  text-align: center;
  padding: 100px 24px
}

.urgency__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px
}

.urgency__unit-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px
}

.urgency__headline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700
}

.urgency__sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: var(--bg-main);
  border-top: 1px solid var(--border)
}

.final-cta__headline {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.final-cta__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px
}

@media(min-width:768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }
}

.footer__brand-desc {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 12px
}

.footer__col-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px
}

.footer__links a {
  display: block;
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color .3s
}

.footer__links a:hover {
  color: var(--white)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.footer__bottom span {
  font-size: .75rem;
  color: var(--text-muted)
}

.footer__big-text {
  margin-top: 60px;
  text-align: center;
  opacity: .05;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: var(--white)
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: var(--transition);
  animation: wa-pulse 2s infinite
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .45)
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .55), 0 0 0 12px rgba(37, 211, 102, .1)
  }
}

/* ===== MODAL lead capture ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--reveal-ease);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 39, 39, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  background: var(--bg-main);
  width: 92%;
  max-width: 450px;
  padding: 48px 32px;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s var(--reveal-ease);
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.8rem;
  color: var(--text-secondary);
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.modal__close:hover {
  color: var(--accent);
}

.modal__header {
  text-align: center;
  margin-bottom: 32px;
}

.modal__header h3 {
  margin-bottom: 8px;
  color: var(--bg-dark);
}

.modal__form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.modal__form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.modal__form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
  background: var(--white);
  color: var(--text-primary);
}

.modal__form input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: transform 1s var(--reveal-ease), opacity 1s var(--reveal-ease)
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

.text-reveal-wrapper {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom
}

.text-reveal-content {
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1.2s var(--reveal-ease), opacity 1.2s ease;
  display: block
}

.reveal-active .text-reveal-content {
  transform: translateY(0);
  opacity: 1
}

.delay-100 {
  transition-delay: .1s
}

.delay-200 {
  transition-delay: .2s
}

.delay-300 {
  transition-delay: .3s
}

.delay-400 {
  transition-delay: .4s
}

.delay-500 {
  transition-delay: .5s
}

.delay-700 {
  transition-delay: .7s
}

/* ===== COUNTER ANIM ===== */
.count-up {
  font-variant-numeric: tabular-nums
}

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

  .hero__stats {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    min-height: auto;
    border-top: 1px solid var(--border)
  }

  .hero__stat {
    padding: 16px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: left;
  }

  .hero__stat-icon {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--accent-gold);
    flex-shrink: 0;
  }

  .hero__stat-number {
    font-size: 1.5rem;
    display: inline-block;
    line-height: 1;
  }

  .hero__stat-label {
    display: block;
    font-size: 0.55rem;
    margin-top: 2px;
    line-height: 1.2;
  }

  .hero__content {
    bottom: 24px;
    left: 20px;
    right: 20px
  }

  .h-display {
    font-size: 2.5rem
  }

  .section-pad {
    padding: 60px 0
  }

  .container {
    padding: 0 16px
  }

  .header__cta .btn {
    padding: 8px 16px;
    font-size: .75rem
  }

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

/* Iconify fix */
iconify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--white)
}