:root {
  --blue-950: #0f1730;
  --blue-900: #18213f;
  --blue-800: #26335c;
  --blue-700: #344675;
  --blue-100: #eef3fb;
  --gold-800: #765529;
  --gold-700: #9a7138;
  --gold-500: #bc8d45;
  --gold-300: #e0c57f;
  --rose: #d7a48c;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --white: #ffffff;
  --text: #252525;
  --muted: #747987;
  --line: rgba(35, 42, 68, 0.12);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 16%, rgba(38, 51, 92, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(24, 33, 63, 0.12), transparent 28rem),
    radial-gradient(circle at 78% 62%, rgba(224, 197, 127, 0.07), transparent 20rem),
    linear-gradient(180deg, #fffdf8, #f6f8fc 54%, #fffdf8);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(100% - 42px, var(--container));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.carousel,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.carousel {
  z-index: -3;
}

.slide {
  opacity: 0;
  background-position: center 18%;
  background-size: cover;
  transform: scale(1.045);
  transition: opacity 1000ms ease, transform 2400ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(15, 23, 48, 0.42), rgba(15, 23, 48, 0.50) 46%, rgba(15, 23, 48, 0.82)),
    linear-gradient(90deg, rgba(15, 23, 48, 0.54), rgba(38, 51, 92, 0.24), rgba(15, 23, 48, 0.62));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 70px;
  background: var(--paper);
  clip-path: polygon(0 62%, 100% 34%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(80px, 10vh, 118px);
  padding-bottom: clamp(108px, 15vh, 150px);
  text-align: center;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-300);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 16px 58px rgba(0, 0, 0, 0.40);
}

.hero h1 span {
  color: var(--gold-300);
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-date {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.2vw, 1.72rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-verse {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.65vw, 1.16rem);
}

.hero-reference {
  margin: 7px 0 0;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(20, 25, 43, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.carousel-control:hover {
  background: rgba(20, 25, 43, 0.46);
}

.carousel-control.prev {
  left: 22px;
}

.carousel-control.next {
  right: 22px;
}

.carousel-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 76px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--gold-300);
}

.countdown-section {
  position: relative;
  z-index: 4;
  padding: clamp(36px, 5vw, 58px) 0 clamp(72px, 9vw, 112px);
  background: #f6f8fc;
}

.countdown-card {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 5vw, 60px);
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.countdown-card h2,
.section-heading h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(38, 51, 92, 0.20);
  border-bottom: 1px solid rgba(38, 51, 92, 0.20);
}

.countdown-item {
  padding: 22px 14px 24px;
  border-right: 1px solid rgba(38, 51, 92, 0.16);
}

.countdown-item:last-child {
  border-right: 0;
}

.countdown-item strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 1;
}

.countdown-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.story-section,
.details-section,
.gallery-section,
.where-section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.story-section {
  background: #f6f8fc;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 66px);
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.leaf-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--gold-500);
  border: 1px solid rgba(135, 97, 45, 0.24);
  border-radius: 50%;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.story-person {
  text-align: center;
}

.story-person h3 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 500;
}

.story-person p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.story-center {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
}

.ampersand-bg {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  color: rgba(35, 42, 68, 0.11);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11rem, 18vw, 18rem);
  line-height: 1;
  transform: translate(-50%, -48%);
}

.story-center img {
  position: relative;
  z-index: 1;
  width: min(72vw, 250px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 26px 60px rgba(20, 25, 43, 0.14);
}

.quote-section {
  padding: clamp(64px, 9vw, 106px) 20px;
  background: linear-gradient(180deg, rgba(38, 51, 92, 0.10), rgba(15, 23, 48, 0.04));
}

.quote-box {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  text-align: center;
  background: rgba(255, 253, 248, 0.70);
  border: 1px solid rgba(38, 51, 92, 0.24);
}

.quote-box span {
  display: block;
  height: 36px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.6;
}

.quote-box blockquote {
  margin: 0;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.8vw, 2.75rem);
  line-height: 1.22;
}

.quote-box p {
  margin: 20px 0 0;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.details-section {
  position: relative;
  overflow: hidden;
}

.details-section::before {
  content: "";
  position: absolute;
  right: min(4vw, 42px);
  top: 90px;
  width: 280px;
  height: 460px;
  opacity: 0.08;
  background:
    radial-gradient(ellipse at 50% 12%, transparent 48%, var(--gold-700) 49%, transparent 51%),
    radial-gradient(ellipse at 48% 34%, transparent 48%, var(--gold-700) 49%, transparent 51%),
    radial-gradient(ellipse at 52% 56%, transparent 48%, var(--gold-700) 49%, transparent 51%),
    linear-gradient(var(--gold-700), var(--gold-700));
  background-size: 140px 118px, 140px 118px, 140px 118px, 2px 420px;
  background-position: 50% 0, 50% 116px, 50% 232px, 50% 28px;
  background-repeat: no-repeat;
  transform: rotate(14deg);
  pointer-events: none;
}

.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(135, 97, 45, 0.22);
  border: 1px solid rgba(135, 97, 45, 0.20);
}

.detail-card {
  min-height: 285px;
  padding: clamp(26px, 4vw, 38px) 24px;
  text-align: center;
  background: rgba(255, 253, 248, 0.92);
}

.detail-card h3 {
  margin: 14px 0 14px;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.detail-card p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue-800);
  background: rgba(135, 97, 45, 0.08);
  border: 1px solid rgba(135, 97, 45, 0.20);
  border-radius: 50%;
  font-size: 1.45rem;
}

.gift-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--blue-900);
  background: transparent;
  border: 1px solid var(--gold-500);
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.gift-link {
  margin-top: 16px;
}

.gift-link:hover,
.btn:hover {
  color: var(--white);
  background: var(--gold-700);
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
  background: var(--blue-100);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.02);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.where-section {
  background: linear-gradient(180deg, rgba(135, 97, 45, 0.07), rgba(255, 253, 248, 1));
}

.where-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(135, 97, 45, 0.24);
  background: rgba(135, 97, 45, 0.22);
  gap: 1px;
}

.where-card {
  min-height: 240px;
  padding: 34px 26px;
  text-align: center;
  background: rgba(255, 253, 248, 0.92);
}

.where-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
}

.where-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--blue-800);
  border: 1px solid rgba(135, 97, 45, 0.22);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.where-card.featured span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.where-card h3 {
  margin: 0 0 14px;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.where-card.featured h3,
.where-card.featured p {
  color: var(--white);
}

.where-card p {
  margin: 7px 0;
  color: var(--muted);
}

.site-footer {
  padding: 52px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.site-footer p {
  margin: 0 0 8px;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.site-footer span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 25, 43, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  width: auto;
  max-width: min(92vw, 980px);
  max-height: 86vh;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.40);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: 72svh;
  }

  .carousel-control {
    display: none;
  }

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

  .story-person {
    max-width: 640px;
    margin-inline: auto;
  }

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


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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 70svh;
  }

  .hero-content {
    width: min(100% - 28px, 920px);
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-verse {
    display: none;
  }

  .carousel-dots {
    bottom: 72px;
  }

  .countdown-card {
    width: min(100% - 22px, 920px);
    padding: 30px 16px;
  }

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

  .countdown-item:nth-child(2) {
    border-right: 0;
  }

  .countdown-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(135, 97, 45, 0.18);
  }

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


  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* Ajustes da revisão: mais azul, mapa e carrossel com foco no topo */
.section-kicker {
  color: var(--blue-800);
}

.hero-kicker,
.hero-reference,
.countdown-card .section-kicker {
  color: var(--gold-300);
}

.slide:nth-child(1),
.slide:nth-child(2),
.slide:nth-child(3),
.slide:nth-child(4),
.slide:nth-child(5) {
  background-position: center 18%;
}

.details-section {
  background: linear-gradient(180deg, rgba(238, 243, 251, 0.72), rgba(255, 253, 248, 0.96));
}

.details-section::before {
  opacity: 0.07;
  background:
    radial-gradient(ellipse at 50% 12%, transparent 48%, var(--blue-800) 49%, transparent 51%),
    radial-gradient(ellipse at 48% 34%, transparent 48%, var(--blue-800) 49%, transparent 51%),
    radial-gradient(ellipse at 52% 56%, transparent 48%, var(--blue-800) 49%, transparent 51%),
    linear-gradient(var(--blue-800), var(--blue-800));
}

.detail-grid {
  background: rgba(24, 33, 63, 0.18);
  border-color: rgba(24, 33, 63, 0.20);
}

.detail-card {
  background: rgba(255, 253, 248, 0.96);
}

.detail-card.featured-blue {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 33, 63, 0.97), rgba(52, 70, 117, 0.95));
}

.detail-card.featured-blue h3,
.detail-card.featured-blue p {
  color: var(--white);
}

.detail-card.featured-blue .detail-icon {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 197, 127, 0.34);
}

.detail-icon {
  color: var(--blue-800);
  background: rgba(38, 51, 92, 0.07);
  border-color: rgba(38, 51, 92, 0.18);
}

.gift-link,
.btn,
.map-link {
  border-color: var(--blue-800);
}

.gift-link:hover,
.btn:hover,
.map-link:hover {
  color: var(--white);
  background: var(--blue-800);
}

.map-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  margin-top: 28px;
  border: 1px solid rgba(24, 33, 63, 0.22);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 28px 76px rgba(15, 23, 48, 0.10);
  overflow: hidden;
}

.map-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(15, 23, 48, 0.98), rgba(38, 51, 92, 0.94));
  color: var(--white);
}

.map-copy .section-kicker {
  color: var(--gold-300);
}

.map-copy h3 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
}

.map-copy p:not(.section-kicker) {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.map-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  border: 1px solid rgba(224, 197, 127, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.map-link:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.map-block iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

@media (max-width: 980px) {
  .map-block {
    grid-template-columns: 1fr;
  }

  .map-block iframe {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .slide,
  .slide:nth-child(1),
  .slide:nth-child(2),
  .slide:nth-child(3),
  .slide:nth-child(4),
  .slide:nth-child(5) {
    background-position: center 14%;
  }

  .hero-content {
    padding-bottom: 118px;
  }

  .map-block iframe {
    min-height: 320px;
  }
}

/* Ajuste: chamadas adicionais para lista de presentes e remoção do RSVP */
.gift-cta-section {
  position: relative;
  padding: clamp(62px, 8vw, 106px) 0;
  overflow: hidden;
}

.gift-cta-section-soft {
  background:
    radial-gradient(circle at 14% 18%, rgba(38, 51, 92, 0.10), transparent 24rem),
    linear-gradient(180deg, rgba(238, 243, 251, 0.74), rgba(255, 253, 248, 0.98));
}

.gift-cta-section-blue {
  background:
    linear-gradient(135deg, rgba(15, 23, 48, 0.96), rgba(38, 51, 92, 0.94)),
    url("assets/images/photo-07.jpg") center 20% / cover;
  color: var(--white);
}

.gift-cta {
  max-width: 830px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
  background: rgba(255, 253, 248, 0.90);
  border: 1px solid rgba(38, 51, 92, 0.20);
  box-shadow: 0 28px 76px rgba(15, 23, 48, 0.10);
}

.gift-cta h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.65rem);
  font-weight: 500;
  line-height: 1.06;
  text-wrap: balance;
}

.gift-cta p:not(.section-kicker) {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.gift-cta .gift-link {
  margin-top: 28px;
}

.gift-cta-dark {
  background: rgba(15, 23, 48, 0.72);
  border-color: rgba(224, 197, 127, 0.30);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
}

.gift-cta-dark h2,
.gift-cta-dark p:not(.section-kicker) {
  color: var(--white);
}

.gift-cta-dark p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.gift-cta-dark .section-kicker {
  color: var(--gold-300);
}

.gift-link-primary {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.gift-link-primary:hover {
  background: var(--gold-700);
  border-color: var(--gold-700);
}

.gift-link-light {
  color: var(--white);
  border-color: rgba(224, 197, 127, 0.74);
}

.gift-link-light:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

@media (max-width: 620px) {
  .gift-cta {
    padding: 32px 20px;
  }
}


/* Ajuste: topo/carrossel mais elegante, na linha da referência enviada */
.hero {
  min-height: clamp(520px, 64svh, 720px);
  display: grid;
  align-items: center;
}

.slide {
  background-position: center top;
  background-size: cover;
  transform: scale(1.025);
}

.slide.is-active {
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 13, 30, 0.44), rgba(15, 23, 48, 0.46) 42%, rgba(15, 23, 48, 0.72)),
    linear-gradient(90deg, rgba(10, 15, 34, 0.58), rgba(24, 33, 63, 0.20), rgba(10, 15, 34, 0.58));
}

.hero::after {
  height: clamp(82px, 9vw, 138px);
  clip-path: polygon(0 58%, 28% 48%, 52% 40%, 74% 48%, 100% 58%, 100% 100%, 0 100%);
}

.hero-content {
  display: grid;
  justify-items: center;
  width: min(100% - 40px, 980px);
  padding-top: clamp(82px, 10vh, 128px);
  padding-bottom: clamp(128px, 16vh, 190px);
}

.hero-monogram {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 78px;
  min-height: 78px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero-monogram::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-monogram::after {
  content: "✧";
  position: absolute;
  right: -12px;
  top: 8px;
  color: var(--gold-300);
  font-size: 0.85rem;
  letter-spacing: 0;
}

.hero-monogram small {
  margin-inline: 3px;
  color: var(--gold-300);
  font-size: 0.92rem;
  font-style: italic;
}

.hero-kicker {
  margin-bottom: 14px;
  color: rgba(224, 197, 127, 0.96);
  font-size: 0.70rem;
  letter-spacing: 0.34em;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(3.45rem, 7.6vw, 6.35rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.hero-date {
  margin-top: 20px;
  font-size: clamp(1.32rem, 2.3vw, 2rem);
  font-weight: 700;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
}

.hero-verse,
.hero-reference {
  display: none;
}

.carousel-control {
  top: 52%;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(15, 23, 48, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
  font-size: 1.55rem;
}

.carousel-control.prev {
  left: 28px;
}

.carousel-control.next {
  right: 28px;
}

.carousel-dots {
  display: none;
}

.countdown-section {
  margin-top: -1px;
  padding: clamp(12px, 2.2vw, 28px) 0 clamp(66px, 8vw, 108px);
  background: var(--paper);
}

.countdown-card {
  width: min(100% - 40px, 760px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.countdown-card .section-kicker {
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
}

.countdown-card h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  margin-top: 0;
  border: 0;
}

.countdown-item {
  min-width: 82px;
  padding: 0;
  border-right: 0;
}

.countdown-item strong {
  color: #050505;
  font-size: clamp(2.55rem, 4vw, 4.3rem);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.countdown-item span {
  margin-top: 2px;
  color: #303030;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: clamp(500px, 64svh, 660px);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 560px;
  }

  .slide,
  .slide:nth-child(1),
  .slide:nth-child(2),
  .slide:nth-child(3),
  .slide:nth-child(4),
  .slide:nth-child(5) {
    background-position: center top;
  }

  .hero-content {
    width: min(100% - 28px, 920px);
    padding-top: 70px;
    padding-bottom: 138px;
  }

  .hero-monogram {
    min-width: 66px;
    min-height: 66px;
    margin-bottom: 18px;
    font-size: 1.44rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.75rem);
  }

  .hero-date {
    font-size: 1.32rem;
  }

  .countdown-section {
    padding-top: 8px;
  }

  .countdown-card {
    width: min(100% - 24px, 760px);
  }

  .countdown {
    grid-template-columns: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .countdown-item,
  .countdown-item:nth-child(2),
  .countdown-item:nth-child(-n + 2) {
    border: 0;
  }

  .countdown-item {
    min-width: 72px;
  }

  .countdown-item strong {
    font-size: 2.9rem;
  }
}

/* Mantem o topo limpo, sem controles visuais no carrossel */
.carousel-control {
  display: none;
}

/* Ajuste final: título do topo menor e mais elegante, como referência */
.hero-content {
  width: min(100% - 40px, 1180px);
  padding-top: clamp(88px, 12vh, 136px);
  padding-bottom: clamp(128px, 15vh, 180px);
}

.hero-monogram {
  min-width: 70px;
  min-height: 70px;
  margin-bottom: 18px;
  font-size: 1.38rem;
}

.hero-kicker {
  margin-bottom: 16px;
  font-size: 0.66rem;
  letter-spacing: 0.38em;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(3.15rem, 5.7vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: 0.018em;
  text-shadow: 0 14px 48px rgba(0, 0, 0, 0.38);
}

.hero h1 span {
  letter-spacing: 0;
}

.hero-date {
  margin-top: 18px;
  font-size: clamp(1.15rem, 2vw, 1.58rem);
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .hero-content {
    padding-top: 74px;
    padding-bottom: 138px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.85rem, 13.5vw, 4.05rem);
    line-height: 1;
    white-space: normal;
  }
}

/* Ajuste solicitado: topo mais delicado e timer com o mesmo fundo da seção Nossa história */
:root {
  --wedding-soft-bg: #fbf7ef;
  --wedding-soft-bg-2: #fffdf8;
}

.hero {
  align-items: end;
  min-height: clamp(540px, 68svh, 760px);
}

.hero::after {
  background: var(--wedding-soft-bg);
}

.hero-content {
  padding-top: clamp(72px, 9vh, 112px);
  padding-bottom: clamp(116px, 14vh, 168px);
}

.hero-monogram {
  min-width: 64px;
  min-height: 64px;
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.hero-kicker {
  margin-bottom: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(2.35rem, 4.15vw, 3.72rem);
  line-height: 1.06;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.hero-date {
  margin-top: 14px;
  font-size: clamp(1rem, 1.55vw, 1.34rem);
  font-weight: 600;
}

.countdown-section,
.story-section {
  background: linear-gradient(180deg, var(--wedding-soft-bg) 0%, var(--wedding-soft-bg-2) 100%);
}

.countdown-section {
  padding-top: clamp(18px, 3vw, 42px);
}

.countdown-card .section-kicker {
  color: var(--blue-800);
}

@media (min-width: 900px) {
  .hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 58px;
    padding-bottom: 128px;
  }

  .hero-monogram {
    min-width: 58px;
    min-height: 58px;
    font-size: 1.08rem;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.28rem, 11.5vw, 3.2rem);
    line-height: 1.04;
  }

  .hero-date {
    font-size: 1.04rem;
  }
}

/* Ajuste final solicitado: nomes mais discretos e fundo azul claro uniforme no timer + história */
:root {
  --wedding-soft-bg: #f6f8fc;
  --wedding-soft-bg-2: #f6f8fc;
}

.hero::after {
  background: #f6f8fc;
}

.hero-content {
  min-height: clamp(540px, 68svh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: clamp(126px, 15vh, 178px);
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(1.9rem, 3.15vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: 0.035em;
  font-weight: 500;
}

.hero-date {
  margin-top: 12px;
  font-size: clamp(0.92rem, 1.3vw, 1.14rem);
}

.countdown-section,
.story-section {
  background: #f6f8fc;
}

@media (min-width: 900px) {
  .hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .hero-content {
    min-height: 560px;
    padding-top: 52px;
    padding-bottom: 128px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: clamp(1.85rem, 9.4vw, 2.55rem);
    line-height: 1.08;
    white-space: normal;
  }

  .hero-date {
    font-size: 0.98rem;
  }
}
