/* ===== Reset & base ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #08050b;
  color: #efe7ef;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #ff7ab5;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

::selection {
  background: #ff2e88;
  color: #fff;
}

@keyframes megFlicker {
  0%, 100% { opacity: 1; }
  48% { opacity: .93; }
  52% { opacity: 1; }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ff2e88;
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

.section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(18px, 5vw, 40px);
}

.text-pink {
  color: #ff5fa2;
}

.text-pink-light {
  color: #ff7ab5;
}

.text-gold {
  color: #d9a648;
}

.script-accent {
  font-family: 'Great Vibes', cursive;
  color: #ff5fa2;
  text-shadow: 0 0 12px rgba(255, 46, 136, .6);
}

/* ===== Buttons ===== */
.btn {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 0;
  white-space: nowrap;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff2e88, #c9186a);
  box-shadow: 0 10px 34px rgba(255, 46, 136, .32);
  padding: 16px 28px;
}

.btn--primary:hover {
  box-shadow: 0 14px 44px rgba(255, 46, 136, .55);
}

.btn--outline-gold {
  color: #e6bd6e;
  background: transparent;
  border: 1px solid rgba(216, 166, 72, .5);
  padding: 16px 28px;
}

.btn--outline-gold:hover {
  background: rgba(216, 166, 72, .12);
  color: #f8e3aa;
}

.btn--outline-pink {
  color: #fff;
  background: transparent;
  border: 1px solid #ff2e88;
  box-shadow: 0 0 14px rgba(255, 46, 136, .35), inset 0 0 14px rgba(255, 46, 136, .12);
  font-size: 10.5px;
  letter-spacing: .1em;
  padding: 10px 15px;
}

.btn--outline-pink:hover {
  background: #ff2e88;
  color: #fff;
}

.btn--outline-pink-fill {
  color: #fff;
  background: transparent;
  border: 1px solid #ff2e88;
  box-shadow: 0 0 18px rgba(255, 46, 136, .35), inset 0 0 18px rgba(255, 46, 136, .1);
  letter-spacing: .18em;
  padding: 15px 30px;
  margin-top: 30px;
}

.btn--outline-pink-fill:hover {
  background: #ff2e88;
}

.btn--lg {
  font-size: 12px;
}

.btn--full {
  width: 100%;
  padding: 15px 18px;
}

.btn--nav {
  margin-left: 0;
}

.text-btn {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.text-btn--gold {
  color: #e6bd6e;
}

.text-btn--muted {
  color: rgba(239, 231, 239, .5);
}

.text-btn:hover {
  color: #fff;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 5, 11, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 166, 72, .22);
}

.nav__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px clamp(18px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
}

.nav__brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  min-width: 0;
}

.nav__logo {
  display: block;
  height: clamp(34px, 6vw, 48px);
  width: auto;
}

.nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  position: static;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 41;
  background: transparent;
  border-bottom: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .7);
}

.nav__link {
  color: rgba(239, 231, 239, .72);
  padding: 3px 0;
}

.nav__link:hover {
  color: #ff7ab5;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 40px;
  padding: 0 11px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(216, 166, 72, .4);
  border-radius: 11px;
}

.burger__bar {
  display: block;
  height: 1.5px;
  background: #e6bd6e;
}

@media (max-width: 819px) {
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    position: absolute;
    background: rgba(11, 6, 12, .98);
    border-bottom: 1px solid rgba(216, 166, 72, .25);
    padding: 22px clamp(18px, 5vw, 40px) 26px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 40px) clamp(56px, 7vw, 104px);
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(255, 46, 136, .16), transparent 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(216, 166, 72, .14), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero__col {
  min-width: 0;
}

.hero__col--image {
  position: relative;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.hero__eyebrow-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9a648);
}

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #d9a648;
}

.hero__logo-heading {
  margin: 0 0 0 -3%;
  line-height: 0;
}

.hero__logo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero__tagline {
  margin: 30px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: #f4ecf2;
  max-width: 30ch;
  text-wrap: pretty;
}

.hero__body {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(239, 231, 239, .66);
  max-width: 44ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__facts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .45);
}

.hero__facts .sep {
  color: rgba(216, 166, 72, .6);
}

.hero__image-glow {
  position: absolute;
  inset: -18px;
  border-radius: 220px 220px 20px 20px;
  background: radial-gradient(60% 60% at 50% 30%, rgba(255, 46, 136, .3), transparent 70%);
  filter: blur(20px);
}

.hero__image-frame {
  position: relative;
  border: 1px solid rgba(216, 166, 72, .45);
  border-radius: 210px 210px 14px 14px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .7);
}

.hero__image {
  display: block;
  width: 100%;
  height: clamp(420px, 52vw, 600px);
  object-fit: cover;
  object-position: 42% 28%;
}

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid rgba(216, 166, 72, .2);
  border-bottom: 1px solid rgba(216, 166, 72, .2);
  background: linear-gradient(90deg, rgba(255, 46, 136, .06), rgba(216, 166, 72, .06));
}

.marquee__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(18px, 5vw, 40px);
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .68);
}

.marquee__sep {
  color: #d9a648;
}

/* ===== Section header (Serviços / Pacotes) ===== */
.section-header {
  text-align: center;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.section-header__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: .12em;
  background: linear-gradient(180deg, #fdf0c9, #e5be6c 45%, #a9762a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e6bd6e;
}

.section-header__script {
  margin: 10px 0 0;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(26px, 3.6vw, 40px);
  color: #ff5fa2;
  text-shadow: 0 0 10px rgba(255, 46, 136, .7), 0 0 30px rgba(255, 46, 136, .35);
}

/* ===== Serviços ===== */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px) clamp(14px, 2vw, 26px);
}

.service {
  margin: 0;
  text-align: center;
  flex: 0 1 clamp(126px, 21%, 200px);
}

.service__circle {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 72, .55);
  box-shadow: 0 0 26px rgba(216, 166, 72, .18);
  aspect-ratio: 1;
}

.service__circle--pink {
  border-color: rgba(255, 46, 136, .55);
  box-shadow: 0 0 26px rgba(255, 46, 136, .22);
}

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

.service__caption {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.7;
}

.service__caption-top {
  color: #e6bd6e;
}

.service__caption-top--pink {
  color: #ff5fa2;
}

.service__caption-bottom {
  color: #efe7ef;
}

/* ===== Experiências ===== */
.section--experiencias {
  background: linear-gradient(180deg, transparent, rgba(216, 166, 72, .05), transparent);
  border-top: 1px solid rgba(216, 166, 72, .16);
  border-bottom: 1px solid rgba(216, 166, 72, .16);
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 40px);
}

.experiencias__title {
  margin: 0 0 clamp(34px, 4vw, 54px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: .06em;
  color: #f4ecf2;
}

.experiencias__title .script-accent {
  font-size: 1.25em;
}

.experiencias__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

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

.exp-card {
  border: 1px solid rgba(216, 166, 72, .3);
  border-radius: 18px;
  padding: 30px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0));
}

.exp-card:hover {
  border-color: rgba(255, 46, 136, .55);
}

.exp-card__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 27px;
  letter-spacing: .06em;
  color: #e6bd6e;
}

.exp-card__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(239, 231, 239, .85);
}

.exp-card__footnote {
  margin: 22px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #d9a648;
}

/* ===== Estrutura ===== */
.estrutura {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.estrutura__col {
  min-width: 0;
}

.estrutura__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: .01em;
  color: #ff5fa2;
  text-shadow: 0 0 12px rgba(255, 46, 136, .7), 0 0 40px rgba(255, 46, 136, .35);
}

.estrutura__script {
  margin: 4px 0 0;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(32px, 4.4vw, 50px);
  color: #ff9ecb;
  text-shadow: 0 0 10px rgba(255, 46, 136, .6);
}

.estrutura__lead {
  margin: 26px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.4;
  color: #f4ecf2;
  max-width: 24ch;
}

.estrutura__specs {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.estrutura__spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(216, 166, 72, .32);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.estrutura__spec--last {
  border-bottom: 0;
}

.estrutura__spec dt,
.estrutura__spec dd {
  margin: 0;
}

.estrutura__spec dt {
  color: rgba(239, 231, 239, .82);
}

.estrutura__image-frame {
  border: 1px solid rgba(255, 46, 136, .3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65), 0 0 50px rgba(255, 46, 136, .12);
}

.estrutura__image {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Gallery ===== */
.gallery-section {
  padding: 0 clamp(18px, 5vw, 40px) clamp(60px, 8vw, 104px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.gallery__tile {
  border: 1px solid rgba(216, 166, 72, .35);
  border-radius: 12px;
  overflow: hidden;
}

.gallery__tile img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ===== Pacotes ===== */
.section--pacotes {
  position: relative;
  border-top: 1px solid rgba(216, 166, 72, .2);
  background: radial-gradient(80% 60% at 50% 0%, rgba(216, 166, 72, .1), transparent 60%);
}

.section-header--pacotes {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-header__title--pacotes {
  font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: .14em;
}

.section-header__script--pacotes {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  text-shadow: 0 0 10px rgba(255, 46, 136, .75), 0 0 30px rgba(255, 46, 136, .4);
}

.pacotes__intro {
  margin: 18px auto 0;
  max-width: 46ch;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(239, 231, 239, .62);
}

.tier-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(216, 166, 72, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  width: fit-content;
  margin: 0 auto clamp(30px, 4vw, 46px);
}

.tier-btn {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 13px 22px;
  background: transparent;
  color: rgba(239, 231, 239, .66);
  border: 1px solid rgba(216, 166, 72, .28);
}

.tier-btn.is-active {
  background: linear-gradient(135deg, #ff2e88, #c9186a);
  color: #fff;
  border-color: #ff2e88;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  align-items: stretch;
}

.package {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 34px 26px 28px;
}

.package--bronze {
  border: 1px solid rgba(201, 138, 75, .55);
  background: linear-gradient(180deg, rgba(201, 138, 75, .1), rgba(255, 255, 255, .015) 40%, rgba(255, 255, 255, 0));
}

.package--prata {
  border: 1px solid rgba(207, 212, 220, .6);
  background: linear-gradient(180deg, rgba(207, 212, 220, .12), rgba(255, 255, 255, .02) 40%, rgba(255, 255, 255, 0));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5), 0 0 40px rgba(255, 46, 136, .1);
}

.package--diamante {
  border: 1px solid rgba(216, 166, 72, .65);
  background: linear-gradient(180deg, rgba(216, 166, 72, .14), rgba(255, 255, 255, .02) 40%, rgba(255, 255, 255, 0));
}

.package__badge-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff2e88, #c9186a);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: 0 6px 22px rgba(255, 46, 136, .45);
}

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

.package__badge {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.package__badge--bronze {
  color: #3a2210;
  background: radial-gradient(circle at 32% 28%, #f4c48c, #c98a4b 55%, #7d4c1c);
  box-shadow: 0 0 18px rgba(201, 138, 75, .45);
}

.package__badge--prata {
  color: #2b2b2f;
  background: radial-gradient(circle at 32% 28%, #ffffff, #cfd4dc 55%, #7d838c);
  box-shadow: 0 0 18px rgba(207, 212, 220, .4);
}

.package__badge--diamante {
  color: #3d2c05;
  background: radial-gradient(circle at 32% 28%, #fff2c4, #e5be6c 52%, #9c6f1d);
  box-shadow: 0 0 20px rgba(216, 166, 72, .5);
  font-size: 17px;
}

.package__eyebrow {
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .55);
}

.package__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: .07em;
}

.package__name--bronze { color: #dfa367; }
.package__name--prata { color: #dfe3ea; }
.package__name--diamante { color: #f0cd84; }

.package__divider {
  margin: 22px 0 18px;
  height: 1px;
}

.package__divider--bronze { background: linear-gradient(90deg, transparent, rgba(201, 138, 75, .5), transparent); }
.package__divider--prata { background: linear-gradient(90deg, transparent, rgba(207, 212, 220, .5), transparent); }
.package__divider--diamante { background: linear-gradient(90deg, transparent, rgba(216, 166, 72, .6), transparent); }

.package__inherit-label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .42);
  margin-bottom: 11px;
}

.package__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.package__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.45;
  color: #f4ecf2;
}

.package__list--dim {
  gap: 9px;
}

.package__list--dim li {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(239, 231, 239, .52);
}

.package__dot {
  flex: 0 0 auto;
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff2e88;
  box-shadow: 0 0 8px rgba(255, 46, 136, .9);
}

.package__dot--dim {
  margin-top: 5px;
  width: 5px;
  height: 5px;
  background: rgba(239, 231, 239, .35);
  box-shadow: none;
}

.package__exclusive-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 12px;
}

.package__exclusive-label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ff7ab5;
  white-space: nowrap;
}

.package__exclusive-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 46, 136, .5), transparent);
}

.package__footer {
  margin-top: auto;
  padding-top: 30px;
}

.package__invest {
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #d9a648;
  text-align: center;
}

.package__price-box {
  margin-top: 12px;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.package__price-box--bronze { border: 1px solid rgba(201, 138, 75, .5); }
.package__price-box--prata { border: 1px solid rgba(207, 212, 220, .55); background: rgba(255, 255, 255, .03); }
.package__price-box--diamante { border: 1px solid rgba(216, 166, 72, .6); }

.package__price-label {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .7);
}

.package__price {
  margin-top: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: #ff5fa2;
  text-shadow: 0 0 18px rgba(255, 46, 136, .4);
}

.package__price--prata {
  font-size: 46px;
  text-shadow: 0 0 20px rgba(255, 46, 136, .45);
}

.package__currency {
  font-size: .5em;
  letter-spacing: .04em;
  vertical-align: .35em;
  margin-right: 4px;
}

.package--bronze .btn--outline-gold,
.package--diamante .btn--outline-gold {
  border-width: 1px;
}

.package--diamante .btn--outline-gold {
  border-color: rgba(216, 166, 72, .7);
}

.package--diamante .btn--outline-gold:hover {
  background: rgba(216, 166, 72, .18);
}

.package--prata .btn--primary {
  box-shadow: 0 10px 30px rgba(255, 46, 136, .35);
  padding: 16px 18px;
}

.package--prata .btn--primary:hover {
  box-shadow: 0 14px 40px rgba(255, 46, 136, .6);
}

.package__footer .btn {
  margin-top: 16px;
}

/* ===== Terms box ===== */
.terms {
  margin-top: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(216, 166, 72, .28);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.terms__label {
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #d9a648;
  margin-bottom: 8px;
}

.terms__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(239, 231, 239, .78);
}

/* ===== Contato ===== */
.contato {
  position: relative;
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 40px) clamp(46px, 6vw, 70px);
  border-top: 1px solid rgba(216, 166, 72, .22);
  background: radial-gradient(70% 100% at 50% 100%, rgba(255, 46, 136, .14), transparent 65%);
}

.contato__inner {
  text-align: center;
}

.contato__headline {
  margin: 0;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.1;
  color: #ff5fa2;
  text-shadow: 0 0 12px rgba(255, 46, 136, .8), 0 0 40px rgba(255, 46, 136, .4);
}

.contato__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 34px;
}

.contato__divider-line {
  width: clamp(30px, 8vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9a648);
}

.contato__divider-line--right {
  background: linear-gradient(90deg, #d9a648, transparent);
}

.contato__divider-text {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d9a648;
}

.contact-cards {
  display: flex;
  gap: clamp(16px, 2.4vw, 28px);
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  flex: 1 1 240px;
  max-width: 340px;
  border-radius: 18px;
  padding: 26px 22px;
  color: #efe7ef;
}

.contact-card--whatsapp {
  border: 1px solid rgba(255, 46, 136, .5);
  background: linear-gradient(180deg, rgba(255, 46, 136, .1), transparent);
}

.contact-card--whatsapp:hover {
  border-color: #ff2e88;
  background: rgba(255, 46, 136, .16);
}

.contact-card--instagram {
  border: 1px solid rgba(216, 166, 72, .45);
  background: linear-gradient(180deg, rgba(216, 166, 72, .08), transparent);
}

.contact-card--instagram:hover {
  border-color: #d9a648;
  background: rgba(216, 166, 72, .14);
}

.contact-card--plain {
  border: 1px solid rgba(255, 255, 255, .14);
}

.contact-card__label {
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #ff9ecb;
}

.contact-card--instagram .contact-card__label {
  color: #d9a648;
}

.contact-card--plain .contact-card__label {
  color: rgba(239, 231, 239, .5);
}

.contact-card__value {
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #fff;
}

.contact-card__sub {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .5);
}

.site-footer {
  margin-top: clamp(46px, 6vw, 74px);
  padding-top: 30px;
  border-top: 1px solid rgba(216, 166, 72, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__text {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .4);
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 2, 6, .82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(14px, 4vh, 48px) 16px;
  overflow-y: auto;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(216, 166, 72, .45);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(180deg, #150a15, #0b060c 60%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .8), 0 0 60px rgba(255, 46, 136, .12);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1;
  color: rgba(239, 231, 239, .75);
  background: transparent;
  border: 1px solid rgba(216, 166, 72, .35);
  border-radius: 50%;
}

.modal__close:hover {
  color: #fff;
  border-color: #ff2e88;
}

.modal__eyebrow {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d9a648;
}

.modal__title {
  margin: 8px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.05;
  color: #f4ecf2;
}

.script-accent--modal {
  font-size: 1.15em;
  text-shadow: 0 0 12px rgba(255, 46, 136, .7);
}

.modal__body {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(239, 231, 239, .6);
}

.modal__form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field__label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .6);
}

.field__input {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #f4ecf2;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(216, 166, 72, .32);
  border-radius: 12px;
  padding: 14px 15px;
  width: 100%;
  min-width: 0;
}

.field__input--select {
  background: #150a15;
  cursor: pointer;
}

.field__input:focus {
  outline: none;
  border-color: #ff2e88;
  background: rgba(255, 46, 136, .07);
}

.field__input--select:focus {
  outline: none;
  border-color: #ff2e88;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 16px;
}

.estimate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dotted rgba(216, 166, 72, .3);
}

.estimate-row__label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239, 231, 239, .55);
}

.estimate-row__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1;
  color: #ff5fa2;
}

.btn--submit {
  margin-top: 20px;
  padding: 17px 20px;
  font-size: 12px;
  box-shadow: 0 12px 34px rgba(255, 46, 136, .35);
}

.btn--submit:hover {
  box-shadow: 0 16px 46px rgba(255, 46, 136, .6);
}

.modal__fineprint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.7;
  color: rgba(239, 231, 239, .45);
}

.modal__sent[hidden] {
  display: none;
}

.summary-box {
  margin-top: 26px;
  border: 1px solid rgba(216, 166, 72, .35);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, .03);
}

.summary-box__label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d9a648;
  margin-bottom: 12px;
}

.summary-box__text {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(239, 231, 239, .85);
  white-space: pre-wrap;
  word-break: break-word;
}

#whatsappLink {
  margin-top: 18px;
  padding: 17px 20px;
  font-size: 12px;
  box-shadow: 0 12px 34px rgba(255, 46, 136, .35);
}

#whatsappLink:hover {
  box-shadow: 0 16px 46px rgba(255, 46, 136, .6);
  color: #fff;
}

.modal__sent-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
