/* =========================================================
   Renan & Juliane — Site de Casamento
   ========================================================= */

:root {
  --pink-50: #fff5f8;
  --pink-100: #ffe4ec;
  --pink-200: #ffc9dc;
  --pink-300: #ff9dbf;
  --pink-400: #ff6fa0;
  --pink-500: #f6417f;
  --pink-600: #e02b68;
  --pink-700: #b81f52;
  --rose-gold: #d9a5a0;
  --cream: #fffaf6;
  --ink: #3a2530;
  --ink-soft: #7a5b66;
  --white: #ffffff;
  --shadow-lg: 0 20px 45px rgba(224, 43, 104, 0.18);
  --shadow-sm: 0 8px 20px rgba(224, 43, 104, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-script: "Great Vibes", cursive;
  --font-body: "Poppins", sans-serif;
  --floral-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg opacity='0.55'%3E%3Cg transform='translate(28,34)'%3E%3Cline x1='0' y1='0' x2='0' y2='26' stroke='%23c9a7b0' stroke-width='1.3'/%3E%3Ccircle cx='0' cy='-4' r='3' fill='%23f6417f'/%3E%3Ccircle cx='4.6' cy='-1' r='3' fill='%23f6417f'/%3E%3Ccircle cx='2.8' cy='4.8' r='3' fill='%23f6417f'/%3E%3Ccircle cx='-2.8' cy='4.8' r='3' fill='%23f6417f'/%3E%3Ccircle cx='-4.6' cy='-1' r='3' fill='%23f6417f'/%3E%3Ccircle cx='0' cy='0' r='1.8' fill='%23ffd166'/%3E%3Cpath d='M0 16 Q7 18 5 25' stroke='%239db98c' stroke-width='1.3' fill='none'/%3E%3C/g%3E%3Cg transform='translate(120,100) scale(0.85)'%3E%3Cline x1='0' y1='0' x2='0' y2='22' stroke='%23c9a7b0' stroke-width='1.3'/%3E%3Ccircle cx='0' cy='-4' r='3' fill='%23c39bd3'/%3E%3Ccircle cx='4.6' cy='-1' r='3' fill='%23c39bd3'/%3E%3Ccircle cx='2.8' cy='4.8' r='3' fill='%23c39bd3'/%3E%3Ccircle cx='-2.8' cy='4.8' r='3' fill='%23c39bd3'/%3E%3Ccircle cx='-4.6' cy='-1' r='3' fill='%23c39bd3'/%3E%3Ccircle cx='0' cy='0' r='1.8' fill='%23ffd166'/%3E%3Cpath d='M0 14 Q-6 16 -4 21' stroke='%239db98c' stroke-width='1.3' fill='none'/%3E%3C/g%3E%3Cg transform='translate(95,30) scale(0.7)'%3E%3Cline x1='0' y1='0' x2='0' y2='20' stroke='%23c9a7b0' stroke-width='1.3'/%3E%3Ccircle cx='0' cy='-4' r='3' fill='%23ffb4c6'/%3E%3Ccircle cx='4.6' cy='-1' r='3' fill='%23ffb4c6'/%3E%3Ccircle cx='2.8' cy='4.8' r='3' fill='%23ffb4c6'/%3E%3Ccircle cx='-2.8' cy='4.8' r='3' fill='%23ffb4c6'/%3E%3Ccircle cx='-4.6' cy='-1' r='3' fill='%23ffb4c6'/%3E%3Ccircle cx='0' cy='0' r='1.8' fill='%23ffd166'/%3E%3C/g%3E%3Cg transform='translate(45,120)'%3E%3Cline x1='0' y1='0' x2='12' y2='-16' stroke='%239db98c' stroke-width='1.3'/%3E%3Cellipse cx='5' cy='-5' rx='3.4' ry='1.7' fill='%23a9c08f' transform='rotate(-42 5 -5)'/%3E%3Cellipse cx='8.5' cy='-10.5' rx='3.4' ry='1.7' fill='%23a9c08f' transform='rotate(-42 8.5 -10.5)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image: var(--floral-pattern);
  background-repeat: repeat;
  background-size: 180px 180px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pink-100);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--pink-600);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.nav__brand {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--pink-600);
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav__links a:hover { color: var(--pink-600); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 96px;
  background: linear-gradient(180deg, var(--pink-100) 0%, var(--pink-50) 60%, var(--cream) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image: var(--floral-pattern);
  background-size: 180px 180px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Heart frame */
.heart-frame {
  display: flex;
  justify-content: center;
}

.heart-frame__shape {
  position: relative;
  width: 320px;
  height: 320px;
  filter: drop-shadow(var(--shadow-lg));
}

.heart-frame__shape::before,
.heart-frame__shape::after {
  content: "";
  position: absolute;
  top: 0;
  width: 54%;
  height: 82%;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 0 6px var(--pink-50), 0 0 0 8px var(--pink-200);
}

.heart-frame__shape::before {
  left: 50%;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart-frame__shape::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.heart-frame__inner {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 68%;
}

.heart-frame__rings {
  font-size: 22px;
  margin-bottom: 2px;
}

.heart-frame__names {
  font-family: var(--font-script);
  font-size: 34px;
  line-height: 1;
  color: var(--pink-600);
  margin: 0;
}

.heart-frame__names span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--rose-gold);
  letter-spacing: 0.3em;
  margin: 1px 0;
}

.heart-frame__date {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

/* Countdown */
.countdown-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 24px;
  text-align: center;
}

.countdown-card__label {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.countdown-card__timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown-card__unit {
  background: var(--pink-50);
  border-radius: var(--radius-md);
  padding: 12px 4px;
}

.countdown-card__value {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: var(--pink-600);
  font-variant-numeric: tabular-nums;
}

.countdown-card__unit-label {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.countdown-card__footer {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Section basics ---------- */
.section-kicker {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-500);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 18px;
  color: var(--ink);
}

.story {
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.story__body {
  max-width: 620px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.story__text {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 15px;
}

.story__text + .story__text {
  margin-top: 16px;
}

/* ---------- RSVP ---------- */
.rsvp {
  padding-top: 56px;
  padding-bottom: 16px;
  text-align: center;
}

.rsvp-card {
  max-width: 420px;
  margin: 28px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
}

.rsvp-card .field {
  text-align: left;
}

.rsvp-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.rsvp-options .btn {
  flex: 1;
  min-width: 100px;
  padding: 12px 16px;
}

.rsvp-hint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Gifts ---------- */
.gifts {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-50) 100%);
}

.gifts__subtitle {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

.gift-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.gift-amount {
  position: relative;
  border: 2px solid var(--pink-100);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}

.gift-amount:hover {
  border-color: var(--pink-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.gift-amount.is-selected {
  border-color: var(--pink-500);
  background: var(--pink-50);
  box-shadow: var(--shadow-sm);
}

.gift-amount__badge {
  position: absolute;
  top: -11px;
  right: 14px;
  background: var(--pink-500);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
}

.gift-amount__value {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--pink-600);
}

.gift-amount__desc {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.gift-amount--custom .gift-amount__value { color: var(--rose-gold); }

/* Payment methods badges */
.payment-methods {
  text-align: center;
  margin-bottom: 40px;
}

.payment-methods__label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 14px;
}

.payment-methods__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}

.payment-badge__icon { width: 22px; height: 22px; }

.payment-badge--brands { gap: 10px; flex-wrap: wrap; }

.brand-chip {
  background: var(--pink-50);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11.5px;
}

.gifts__cta { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn--secondary {
  background: var(--pink-50);
  color: var(--pink-600);
  border: 1px solid var(--pink-200);
}

.btn--full { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 24px 48px;
  background: var(--white);
}

.site-footer__names {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--pink-600);
  margin: 0;
}

.site-footer__date {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[aria-hidden="false"] { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 37, 48, 0.45);
  backdrop-filter: blur(2px);
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-lg);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}

.modal__back {
  background: none;
  border: none;
  color: var(--pink-500);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
}

.modal__title {
  font-size: 20px;
  margin: 0 0 18px;
  color: var(--ink);
  text-align: center;
}

.modal__summary {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.6;
}

.modal__hint {
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--pink-700);
  line-height: 1.5;
  text-align: center;
  margin: 0 0 16px;
}

.modal__product {
  text-align: center;
  background: var(--pink-100);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pink-700);
  margin: -8px 0 16px;
}

.modal__error {
  color: var(--pink-600);
  font-size: 12.5px;
  text-align: center;
  margin-top: 10px;
}

.modal__success-icon {
  text-align: center;
  font-size: 44px;
  margin-bottom: 8px;
}

.field { display: block; margin-bottom: 16px; }

.field__label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field__hint {
  display: block;
  font-size: 11.5px;
  color: var(--ink-soft);
  opacity: 0.8;
  margin-top: 5px;
}

.field input.is-invalid {
  border-color: var(--pink-500);
  background: var(--pink-50);
}

.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--pink-100);
  border-radius: 12px;
  background: var(--pink-50);
  color: var(--ink);
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink-400);
  background: var(--white);
}

.pix-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 18px;
  border-radius: 12px;
  border: 1px solid var(--pink-100);
}

/* ---------- Lojinha de presentes ---------- */
.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--pink-100) 0%, var(--pink-50) 60%, var(--cream) 100%);
}

.shop-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image: var(--floral-pattern);
  background-size: 180px 180px;
  pointer-events: none;
}

.shop-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.gift-heart {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.gift-heart__bow {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 46px;
  z-index: 3;
  filter: drop-shadow(0 4px 6px rgba(224, 43, 104, 0.25));
}

.gift-heart__shape {
  z-index: 1;
}

.gift-heart__inner {
  z-index: 2;
}

.gift-heart__emoji {
  font-size: 34px;
  margin-bottom: 4px;
}

.gift-heart__title {
  font-family: var(--font-script);
  font-size: 30px;
  line-height: 1.05;
  color: var(--pink-600);
  margin: 0;
  text-align: center;
}

.gift-heart__title span {
  display: block;
  font-size: 22px;
  margin-top: 2px;
}

.shop-hero__subtitle {
  max-width: 520px;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

.shop-products {
  padding: 24px 0 96px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  aspect-ratio: 4 / 3;
  background: var(--pink-50);
  overflow: hidden;
}

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

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
  min-height: 2.6em;
}

.product-card__price {
  font-size: 19px;
  font-weight: 700;
  color: var(--pink-600);
  margin: 0 0 4px;
}

.product-card--custom {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px;
  gap: 10px;
}

.product-card--custom .product-card__icon {
  font-size: 36px;
}

.product-card--custom .product-card__title {
  min-height: 0;
}

.product-card--custom .product-card__desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 0 0 6px;
}

/* ---------- Dress code ---------- */
.dress-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-100) 0%, var(--pink-50) 60%, var(--cream) 100%);
}

.dress-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image: var(--floral-pattern);
  background-size: 180px 180px;
  pointer-events: none;
}

.dress-hero__content {
  position: relative;
}

.dress-hero__title {
  font-family: var(--font-script);
  font-size: 52px;
  color: var(--pink-600);
  margin: 8px 0 14px;
}

.dress-hero__subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

.dress-guide {
  padding-top: 24px;
  padding-bottom: 8px;
  text-align: center;
}

.dress-guide__intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 16px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
}

.dress-guide__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.dress-guide__columns--3 {
  max-width: 820px;
}

.info-map {
  max-width: 720px;
  margin: 32px auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  line-height: 0;
}

/* ---------- Hospedagem ---------- */
.hotel-section {
  padding-top: 16px;
  padding-bottom: 72px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.hotel-card {
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.hotel-card__name {
  font-size: 16px;
  color: var(--pink-600);
  margin: 0 0 4px;
  line-height: 1.35;
}

.hotel-card__distance {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 2px;
}

.hotel-card__line {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hotel-card__line a {
  color: var(--pink-600);
  word-break: break-word;
}

.dress-guide__col {
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}

.dress-guide__title {
  font-size: 16px;
  color: var(--pink-600);
  margin: 0 0 10px;
}

.dress-guide__col p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.dress-gallery-section {
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
}

.dress-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
}

.dress-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dress-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dress-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.dress-card figcaption {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.dress-note {
  padding-top: 8px;
  padding-bottom: 72px;
}

.dress-note__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.dress-note__icon {
  font-size: 34px;
  flex-shrink: 0;
}

.dress-note__card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--pink-100);
    box-shadow: var(--shadow-sm);
    padding: 8px 24px 16px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--pink-50);
  }
  .section-title { font-size: 26px; }
  .heart-frame__names { font-size: 28px; }
  .countdown-card__value { font-size: 21px; }
  .gift-heart__shape { width: 260px; height: 260px; }
  .gift-heart__title { font-size: 24px; }
  .gift-heart__title span { font-size: 18px; }
  .dress-hero__title { font-size: 40px; }
  .dress-note__card { flex-direction: column; text-align: center; }
  .lightbox__nav { font-size: 22px; padding: 10px 14px; }
}

/* ---------- Galeria "Nós" ---------- */
.gallery-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.photo-grid__item {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--pink-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-grid__item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  background: rgba(20, 10, 15, 0.92);
  padding: 24px;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox__image {
  max-width: min(90vw, 900px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 26px;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
