/* ============================================================
   DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #D4AF37;
  --gold-dark:   #B8952B;
  --dark:        #0B0B0B;
  --dark-bg:     #111111;
  --text:        #1a1a1a;
  --text-muted:  #797980;
  --bg-white:    #ffffff;
  --bg-light:    #f9f9f9;
  --border:      #e4e4e4;
  --green-wa:    #25D366;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.20);

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;

  --transition:  0.3s ease;
  --container:   1200px;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Figtree', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--text); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; }

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--dark);
}

.btn--lg { padding: 17px 40px; font-size: 1rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}

.nav__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  color: rgba(255,255,255,.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--gold);
  background: rgba(212,175,55,.12);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }

  .nav__links {
    position: fixed;
    top: 78px;
    inset-inline: 0;
    background: rgba(10,10,10,.98);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link { padding: 13px 16px; border-radius: 8px; font-size: 0.95rem; }
  .nav__cta  { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 78px;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 80px;
  width: 100%;
}

.hero__text { flex: 1; max-width: 640px; }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
}

.hero__checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 0.95rem;
}
.hero__checklist .fa-check {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero__seal {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}
.hero__seal img { width: 155px; }

.hero__social {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}
.hero__social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero__content   { flex-direction: column; text-align: center; padding-block: 60px; }
  .hero__text      { max-width: 100%; }
  .hero__checklist { align-items: center; }
  .hero__seal      { order: -1; }
  .hero__seal img  { width: 110px; }
  .hero__social    { display: none; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: var(--bg-white);
  text-align: center;
}

.stats__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.stats__count {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
}

.stats__description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  padding: 80px 0;
  background: var(--bg-light);
}

.packages > .container > .section-title,
.packages > .container > .section-subtitle {
  display: none; /* title is implicit from context */
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.package-card--featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}
.package-card--featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.package-card__badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 0;
  text-align: center;
}

.package-card__body { padding: 28px; }

.package-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.package-card__description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* .package-card__price-main removido — substituído por .pkg-price */

/* price block — original (crossed) + installments */
.pkg-price {
  margin-bottom: 20px;
}

.pkg-price__original {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pkg-installments {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.pkg-installments__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pkg-installments__row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.pkg-installments__qty {
  font-size: 14px;
  color: var(--text-muted);
  vertical-align: top;
  align-self: flex-start;
  padding-top: 3px;
}

.pkg-installments__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.pkg-installments__suffix {
  font-size: 14px;
  color: var(--text-muted);
}

.pkg-installments__sublabel {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 11px;
  color: var(--text-muted);
}

.package-card__highlights {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-card__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.package-card__highlight i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.package-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.package-card__actions .btn { width: 100%; }

.package-card__wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px;
  transition: color var(--transition);
}
.package-card__wa-link:hover { color: var(--green-wa); }

.package-card__notice {
  font-size: 0.76rem;
  color: var(--text-muted);
  padding: 10px 0 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  line-height: 1.5;
}

.package-card__divider { height: 1px; background: var(--border); margin: 4px 0 16px; }

.package-card__included-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.package-card__included { display: flex; flex-direction: column; gap: 9px; }
.package-card__included li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.package-card__included li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Ccircle cx='256' cy='256' r='248' fill='none' stroke='%23D4AF37' stroke-width='30'/%3E%3Cpath fill='%23D4AF37' d='M173.9 439.4l-166.4-166.4c-10-10-10-26.2 0-36.2l36.2-36.2c10-10 26.2-10 36.2 0L192 312.7 432.1 72.6c10-10 26.2-10 36.2 0l36.2 36.2c10 10 10 26.2 0 36.2l-294.4 294.4c-10 10-26.2 10-36.2 0z'/%3E%3C/svg%3E") center/14px no-repeat;
}

@media (max-width: 1024px) {
  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-5px); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  padding: 80px 0;
  background: var(--bg-white);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.step-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.step-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1.3rem;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.steps__conclusion {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

/* ============================================================
   EXPERIENCE GALLERY
   ============================================================ */
.experience {
  padding: 80px 0;
  background: var(--dark-bg);
}
.experience .section-title   { color: #fff; }
.experience .section-subtitle { color: rgba(255,255,255,.55); }

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.exp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.exp-card:hover .exp-card__img { transform: scale(1.07); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
}

.exp-card__content {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 18px 20px;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.exp-card:hover .exp-card__content { transform: translateY(0); }

.exp-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.exp-card__desc { font-size: 0.8rem; color: rgba(255,255,255,.72); }

.experience__cta { text-align: center; }

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg .hero__slide { z-index: 0; }

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-block: 80px;
}
.cta-banner__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonials__grid.widget-host,
.instagram__grid.widget-host {
  display: block;
  width: 100%;
}

.widget-host__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.widget-host__inner > [class^="elfsight-app-"] {
  width: 100%;
  min-width: 100%;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-card__img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.testimonial-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}

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

/* ============================================================
   BALLOON MAGIC (CTA strip)
   ============================================================ */
.balloon-magic {
  padding: 72px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.balloon-magic__inner { max-width: 680px; }
.balloon-magic h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.balloon-magic p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   SAFETY
   ============================================================ */
.safety { padding: 80px 0; background: var(--bg-light); }

.safety__header {
  text-align: center;
  margin-bottom: 56px;
}

.safety__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.safety__text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}
.safety__text p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.safety__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

@media (max-width: 768px) {
  .safety__body { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { padding: 80px 0; background: var(--bg-white); }

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: block;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.instagram__item:hover img { transform: scale(1.06); }

.instagram__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.instagram__item:hover .instagram__item__overlay { opacity: 1; }
.instagram__item__overlay i { color: #fff; font-size: 2.2rem; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 80px 0; background: var(--bg-light); }

.faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.faq__header .section-title,
.faq__header .section-subtitle { text-align: left; margin-inline: 0; }
.faq__header .section-subtitle { margin-bottom: 24px; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--dark);
  gap: 12px;
  user-select: none;
  transition: background var(--transition);
}
.faq-item__q:hover { background: var(--bg-light); }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-item__icon {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-item__body { max-height: 500px; }

.faq-item__a {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; gap: 32px; }
  .faq__header .section-title,
  .faq__header .section-subtitle { text-align: center; margin-inline: auto; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  padding: 80px 0;
  background: var(--dark-bg);
  text-align: center;
}
.cta-final__inner { max-width: 580px; margin-inline: auto; }

.cta-final__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-final p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__logo img { height: 46px; width: auto; }

.site-footer__social { display: flex; gap: 10px; }

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .site-footer__inner { flex-direction: column; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover {
  background: #1aa854;
  transform: scale(1.1);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.8); }
}

/* ============================================================
   SCROLL FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
