/* ============================================
   Salão do Bosque — Landing Noivas
   Protótipo de alta fidelidade
   Paleta oficial: verde petróleo + bege
   ============================================ */

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

:root {
  /* Paleta oficial da marca */
  --verde: #0F6E6C;
  --verde-escuro: #0a4a48;
  --verde-profundo: #052624;
  --bege: #C7B8A3;
  --bege-claro: #E8DFD0;
  --bege-suave: #F2EBE0;
  --off-white: #FAF7F2;
  --cream: #FDFBF7;
  --preto: #1A1A1A;
  --preto-puro: #000;
  --cinza: #6B6050;
  --cinza-claro: #A89F92;
  --linha: rgba(107, 96, 80, 0.15);

  /* Tipografia */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Timing */
  --t-fast: 0.2s;
  --t-med: 0.4s;
  --t-slow: 0.8s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  color: var(--preto);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

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

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

/* ============================================
   LAYOUT UTILITÁRIOS
============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 64px;
}

section {
  position: relative;
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--verde);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.04;
  color: var(--preto);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--verde);
}

.section-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--cinza);
  max-width: 640px;
  font-weight: 300;
}

/* ============================================
   NAVBAR
============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5, 38, 36, 0.65), transparent);
  backdrop-filter: blur(2px);
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 64px;
  border-bottom: 1px solid var(--linha);
}

.nav-logo {
  height: 44px;
  transition: opacity var(--t-med);
}

.nav-logo-dark { opacity: 0; position: absolute; }
.nav.scrolled .nav-logo-light { opacity: 0; }
.nav.scrolled .nav-logo-dark { opacity: 1; position: static; }

.nav-logo-wrap { position: relative; display: flex; align-items: center; }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(250, 247, 242, 0.85);
  transition: color var(--t-fast);
}

.nav-links a:hover { color: #fff; }

.nav.scrolled .nav-links a {
  color: var(--preto);
}

.nav.scrolled .nav-links a:hover { color: var(--verde); }

.nav-cta {
  padding: 12px 24px;
  border: 1px solid rgba(250, 247, 242, 0.5);
  color: #fff !important;
  font-size: 11px !important;
  transition: all var(--t-fast);
}

.nav-cta:hover {
  background: var(--bege);
  border-color: var(--bege);
  color: var(--preto) !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--verde);
  color: var(--verde) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--verde);
  color: #fff !important;
}

/* ============================================
   HERO — Coluna Editorial (capa de revista)
   A foto como protagonista absoluta; texto
   ocupa apenas as faixas mortas (céu + piso).
============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--off-white);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dois gradientes curtos apenas nas bordas — não vinheta central */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 38, 36, 0.55) 0%,
    rgba(5, 38, 36, 0) 14%
  );
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(5, 38, 36, 0.78) 0%,
    rgba(5, 38, 36, 0.35) 18%,
    rgba(5, 38, 36, 0) 30%
  );
  pointer-events: none;
}

/* MASTHEAD — eyebrow com hairlines flanqueadoras (formato capa de revista) */
.hero-masthead {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
  white-space: nowrap;
}

.hero-hairline {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(250, 247, 242, 0.5);
}

.hero-tag {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--off-white);
  opacity: 0.82;
  font-weight: 400;
}

/* Linha vertical ornamental entre tag e título */
.hero-vrule {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: rgba(250, 247, 242, 0.35);
  z-index: 3;
}

/* TÍTULO — ancorado no canto inferior esquerdo, sobre o piso de pedra */
.hero-title-wrap {
  position: absolute;
  left: 64px;
  bottom: 84px;
  max-width: 58%;
  z-index: 3;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7.2vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--off-white);
  text-shadow: 0 2px 24px rgba(5, 38, 36, 0.45);
  margin: 0;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--bege);
}

/* SIDE — sub + CTA no canto inferior direito */
.hero-side {
  position: absolute;
  right: 64px;
  bottom: 94px;
  max-width: 340px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--off-white);
  opacity: 0.88;
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  background: var(--verde);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border-radius: 2px;
  border: none;
  transition: background var(--t-med);
}

.hero-cta span {
  display: inline-block;
  transition: transform var(--t-med);
}

.hero-cta:hover {
  background: var(--verde-profundo);
}

.hero-cta:hover span {
  transform: translateX(4px);
}

/* SCROLL HINT — mantido, centralizado no rodapé */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--off-white);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0.7;
  animation: bounce-subtle 3s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: var(--off-white);
  margin: 12px auto 0;
  opacity: 0.5;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* MOBILE — colapsa a coluna editorial em layout vertical centralizado
   A composição de capa de revista só funciona com largura; mobile usa
   stack clássico com overlay mais forte para garantir legibilidade. */
@media (max-width: 900px) {
  .hero-bg::after {
    background: linear-gradient(
      0deg,
      rgba(5, 38, 36, 0.88) 0%,
      rgba(5, 38, 36, 0.55) 32%,
      rgba(5, 38, 36, 0.25) 58%,
      rgba(5, 38, 36, 0.4) 100%
    );
  }

  .hero-masthead {
    top: 110px;
    gap: 14px;
  }
  .hero-hairline { width: 24px; }
  .hero-tag { font-size: 10px; letter-spacing: 0.32em; }

  .hero-vrule {
    top: 150px;
    height: 40px;
  }

  .hero-title-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    padding: 220px 24px 0;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.98;
  }

  .hero-side {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    padding: 32px 24px 120px;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 360px;
  }

  .hero-scroll { bottom: 18px; }
  .hero-scroll::after { height: 24px; margin-top: 8px; }
}

/* ============================================
   MANIFESTO
============================================ */

.manifesto {
  padding: 180px 0;
  background: var(--off-white);
  text-align: center;
}

.manifesto .ornament {
  width: 56px;
  height: 1px;
  background: var(--verde);
  margin: 0 auto 36px;
  opacity: 0.6;
}

.manifesto p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.55;
  color: var(--preto);
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
}

.manifesto p em {
  font-style: italic;
  color: var(--verde);
}

/* ============================================
   ATO II — O cuidado começa antes
============================================ */

.ato-2 {
  padding: 160px 0;
  background: var(--cream);
}

.ato-2-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.ato-2-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bege-claro);
}

.ato-2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.ato-2-media:hover img { transform: scale(1.03); }

.ato-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 20px;
}

.ato-2 h2 {
  margin-bottom: 24px;
}

.ato-2-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--cinza);
  margin-bottom: 40px;
  font-weight: 300;
}

.timeline {
  border-top: 1px solid var(--linha);
}

.timeline-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--linha);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
  transition: padding-left var(--t-fast);
}

.timeline-item:hover {
  padding-left: 8px;
}

.timeline-month {
  font-family: var(--serif);
  font-style: italic;
  color: var(--verde);
  font-size: 16px;
  font-weight: 400;
}

.timeline-content strong {
  display: block;
  font-weight: 500;
  color: var(--preto);
  font-size: 15px;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.timeline-content span {
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.5;
}

/* ============================================
   ROBE RITUAL — diferencial único
============================================ */

.robe {
  background: var(--bege-suave);
  padding: 160px 0;
}

.robe-head {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 64px;
}

.robe-head .section-sub {
  margin: 0 auto;
}

.robe-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 64px;
}

.robe-item {
  position: relative;
}

.robe-item figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bege-claro);
}

.robe-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) sepia(0.05);
  transition: transform var(--t-slow), filter var(--t-slow);
}

.robe-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1) sepia(0);
}

.robe-item figcaption {
  padding: 20px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--linha);
  margin-top: 16px;
}

.robe-item .papel {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--preto);
}

.robe-item .cor {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cinza);
}

/* ============================================
   REELS — Em movimento
============================================ */

.reels {
  background: var(--cream);
  padding: 160px 0 140px;
  overflow: hidden;
}

.reels-head {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 64px;
}

.reels-head .section-sub {
  margin: 0 auto;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
}

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bege-claro);
  cursor: pointer;
  border-radius: 6px;
  border: none;
  padding: 0;
  transition: transform var(--t-med), box-shadow var(--t-med);
  font-family: inherit;
}

.reel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 110, 108, 0.18);
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(5, 38, 36, 0) 0%,
    rgba(5, 38, 36, 0) 55%,
    rgba(5, 38, 36, 0.65) 100%
  );
  pointer-events: none;
  transition: background var(--t-med);
}

.reel:hover .reel-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 38, 36, 0.15) 0%,
    rgba(5, 38, 36, 0.1) 55%,
    rgba(5, 38, 36, 0.75) 100%
  );
}

.reel-play {
  margin-top: auto;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.9);
  position: relative;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity var(--t-med), transform var(--t-med);
  align-self: center;
}

.reel-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid var(--verde);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.reel:hover .reel-play {
  opacity: 1;
  transform: scale(1);
}

.reel-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  margin-top: 8px;
}

.reels-hint {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cinza-claro);
  font-weight: 500;
}

/* Lightbox de vídeo */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 38, 36, 0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
  max-height: 88vh;
}

.lightbox-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.12);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-fast);
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(253, 251, 247, 0.25);
  transform: scale(1.08);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 700px) {
  .reels { padding: 100px 0 80px; }
  .reels-head { margin-bottom: 40px; padding: 0 24px; }
  .reels-grid {
    grid-template-columns: repeat(6, 72vw);
    gap: 12px;
    padding: 0 24px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
  }
  .reels-grid::-webkit-scrollbar { display: none; }
  .reel {
    scroll-snap-align: start;
  }
  .reel-play {
    opacity: 1;
    transform: scale(0.9);
    width: 44px;
    height: 44px;
  }
  .reel-play::after {
    border-left-width: 13px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  .reel-label { font-size: 16px; }
  .reels-hint { padding: 0 24px; }
  .lightbox-close { top: 16px; right: 16px; }
}

/* ============================================
   ATO III — Ensaio (seção escura)
============================================ */

.ato-3 {
  background: var(--verde-profundo);
  color: var(--cream);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.ato-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(199, 184, 163, 0.08), transparent 60%);
  pointer-events: none;
}

.ato-3-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ato-3 .ato-num { color: var(--bege); }
.ato-3 h2 { color: var(--cream); }
.ato-3 h2 em { color: var(--bege); }
.ato-3 .ato-2-lead {
  color: rgba(253, 251, 247, 0.92);
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.5;
  margin-bottom: 32px;
}

.ato-3-text p:not(.ato-2-lead) {
  color: rgba(253, 251, 247, 0.72);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.ato-3-text p:not(.ato-2-lead):last-child {
  margin-bottom: 0;
  margin-top: 8px;
  font-style: italic;
  color: rgba(253, 251, 247, 0.85);
}

.ato-3-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.ato-3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================
   ATO IV — O grande dia (galeria)
============================================ */

.ato-4 {
  padding: 180px 0;
  background: var(--off-white);
}

.ato-4-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 64px;
}

.ato-4-head .section-sub { margin: 0 auto; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
}

.gallery figure {
  overflow: hidden;
  background: var(--bege-claro);
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery figure:hover img { transform: scale(1.04); }

.gallery figure:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}
.gallery figure:nth-child(2) {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}
.gallery figure:nth-child(3) {
  grid-column: span 3;
  aspect-ratio: 3 / 4;
}
.gallery figure:nth-child(4) {
  grid-column: span 3;
  aspect-ratio: 1;
}
.gallery figure:nth-child(5) {
  grid-column: span 4;
  aspect-ratio: 1;
}
.gallery figure:nth-child(6) {
  grid-column: span 7;
  aspect-ratio: 16 / 9;
}
.gallery figure:nth-child(7) {
  grid-column: span 5;
  aspect-ratio: 4 / 3;
}
.gallery figure:nth-child(8) {
  grid-column: span 7;
  aspect-ratio: 3 / 2;
}

/* Foto do brinde é vertical — crop mais quadrado + reposicionado para pegar
   a noiva, a garrafa Salton e os braços das madrinhas brindando */
.gallery figure:nth-child(8) img {
  object-position: center 45%;
}

/* Slot 9 — quase quadrado para alinhar com a altura do slot 8 na mesma row */
.gallery figure:nth-child(9) {
  grid-column: span 5;
  aspect-ratio: 17 / 16;
}

/* ============================================
   DETALHES DE PENTEADO
============================================ */

.detalhes {
  background: var(--preto);
  color: var(--cream);
  padding: 160px 0;
}

.detalhes-head {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 64px;
}

.detalhes h2 { color: var(--cream); }
.detalhes h2 em { color: var(--bege); }
.detalhes .section-label { color: var(--bege); }
.detalhes .section-sub { color: rgba(253, 251, 247, 0.7); margin: 0 auto; }

.detalhes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

.detalhes-grid figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.detalhes-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-slow);
  filter: brightness(0.94);
}

.detalhes-grid figure:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ============================================
   ENTORNO DA NOIVA
============================================ */

.entorno {
  background: var(--cream);
  padding: 160px 0;
}

.entorno-head {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 64px;
}

.entorno-head .section-sub { margin: 0 auto; }

.entorno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

.entorno-card figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bege-claro);
  margin-bottom: 24px;
}

.entorno-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.entorno-card:hover img { transform: scale(1.04); }

.entorno-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--verde);
  margin-bottom: 8px;
  font-weight: 400;
}

.entorno-card p {
  color: var(--cinza);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   DEPOIMENTOS — Vozes de noivas
============================================ */

.depoimentos {
  padding: 180px 0;
  background: var(--off-white);
}

.depoimentos-head {
  text-align: center;
  margin-bottom: 80px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 56px 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 64px;
}

.depoimento {
  text-align: center;
  padding: 0 12px;
  grid-column: span 2;
}
/* Quando há 5 depoimentos: 3 em cima + 2 centralizados embaixo (cols 2-5) */
.depoimentos-grid > .depoimento:nth-last-child(2):nth-child(4) { grid-column: 2 / span 2; }
.depoimentos-grid > .depoimento:nth-last-child(1):nth-child(5) { grid-column: 4 / span 2; }

.depoimento-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.4;
  color: var(--bege);
  margin-bottom: 28px;
  font-style: italic;
}

.depoimento-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  font-style: italic;
  color: var(--preto);
  margin-bottom: 28px;
  font-weight: 300;
}

.depoimento-autor {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--cinza);
}
.depoimento-data {
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--cinza);
  opacity: 0.65;
  font-size: 10.5px;
  margin-left: 4px;
}

/* ============================================
   ESPAÇO
============================================ */

.espaco {
  background: var(--bege-suave);
  padding: 160px 0;
}

.espaco-head {
  text-align: center;
  padding: 0 64px;
  margin-bottom: 72px;
}

.espaco-head .section-sub { margin: 0 auto; }

.espaco-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.espaco-grid figure {
  overflow: hidden;
  background: var(--bege-claro);
  aspect-ratio: 4 / 5;
}

/* Video tour do espaço */
.espaco-video {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 24px;
}

.video-tour {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bege-claro);
  cursor: pointer;
  border-radius: 8px;
  border: none;
  padding: 0;
  transition: transform var(--t-med), box-shadow var(--t-med);
  font-family: inherit;
  box-shadow: 0 20px 60px rgba(5, 38, 36, 0.18);
}

.video-tour:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(15, 110, 108, 0.28);
}

.video-tour-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-tour-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(5, 38, 36, 0) 0%,
    rgba(5, 38, 36, 0) 50%,
    rgba(5, 38, 36, 0.7) 100%
  );
  pointer-events: none;
  transition: background var(--t-med);
}

.video-tour:hover .video-tour-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 38, 36, 0.2) 0%,
    rgba(5, 38, 36, 0.1) 50%,
    rgba(5, 38, 36, 0.8) 100%
  );
}

.video-tour-play {
  margin-top: auto;
  margin-bottom: 22px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.94);
  position: relative;
  transition: transform var(--t-med);
  align-self: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-tour-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 22px solid var(--verde);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-tour:hover .video-tour-play {
  transform: scale(1.08);
}

.video-tour-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
  text-align: center;
  letter-spacing: 0.01em;
}

.video-tour-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cinza-claro);
  font-weight: 500;
  font-family: var(--sans);
}

@media (max-width: 600px) {
  .espaco-video { max-width: 340px; }
  .video-tour-play { width: 60px; height: 60px; }
  .video-tour-play::after { border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }
  .video-tour-label { font-size: 18px; }
}

.espaco-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.espaco-grid figure:hover img { transform: scale(1.04); }

/* ============================================
   ATO V / CTA final
============================================ */

.cta-final {
  background: var(--verde);
  color: var(--cream);
  padding: 180px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(199, 184, 163, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final .ato-num { color: var(--bege); }
.cta-final h2 { color: var(--cream); font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; }
.cta-final h2 em { color: var(--bege); }

.cta-final > .cta-wrap > p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(253, 251, 247, 0.82);
  margin-bottom: 56px;
  font-weight: 300;
}

.form {
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bege);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(253, 251, 247, 0.3);
  padding: 10px 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  transition: border-color var(--t-fast);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--bege);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(253, 251, 247, 0.3);
}

.form-submit {
  align-self: center;
  padding: 18px 48px;
  background: var(--bege);
  color: var(--verde-profundo);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--t-med);
  margin-top: 16px;
  position: relative;
  min-width: 220px;
}

.form-submit:hover:not(:disabled) {
  background: var(--cream);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-submit-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(5, 38, 36, 0.2);
  border-top-color: var(--verde-profundo);
  border-radius: 50%;
  animation: form-spin 0.8s linear infinite;
}

.form-submit.loading .form-submit-label { visibility: hidden; }
.form-submit.loading .form-submit-spinner { display: block; }

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* Label "(opcional)" menor ao lado do campo */
.form-opt {
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0;
  color: rgba(199, 184, 163, 0.6);
  font-size: 10px;
  font-weight: 400;
  margin-left: 4px;
}

/* Nota embaixo do botão */
.form-note {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(199, 184, 163, 0.8);
  letter-spacing: 0.02em;
  font-family: var(--sans);
}

/* Honeypot — visualmente escondido mas acessível a bots */
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* Estado inválido */
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: rgba(232, 120, 120, 0.6);
}

.form-field.error input,
.form-field.error textarea {
  border-bottom-color: rgba(232, 120, 120, 0.9);
}

.form-field-msg {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 190, 190, 0.92);
  letter-spacing: 0.02em;
}

/* Success & error panels */
.form-success,
.form-error {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border-radius: 4px;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(199, 184, 163, 0.2);
  backdrop-filter: blur(4px);
}

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bege);
  color: var(--verde-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 400;
}

.form-success p,
.form-error p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.82);
  margin-bottom: 24px;
}

.form-success-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all var(--t-med);
}

.form-success-cta::before {
  content: '💬';
  font-size: 16px;
}

.form-success-cta:hover {
  background: #1ea955;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

.form-error { border-color: rgba(232, 120, 120, 0.3); }

/* CTA WhatsApp primário (substitui o formulário) */
.cta-whatsapp-wrap {
  margin-top: 48px;
  text-align: center;
}

.cta-whatsapp-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 48px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.28);
  transition: all var(--t-med);
}

.cta-whatsapp-primary:hover {
  background: #1ea955;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp-icon {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 600px) {
  .cta-whatsapp-primary {
    padding: 18px 32px;
    font-size: 15px;
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

.cta-divider {
  margin: 56px 0 36px;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(253, 251, 247, 0.5);
  position: relative;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: rgba(253, 251, 247, 0.2);
}

.cta-divider::before { left: calc(50% - 120px); }
.cta-divider::after { right: calc(50% - 120px); }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--cream) !important;
  border-bottom: 1px solid var(--bege);
  padding-bottom: 4px;
  transition: color var(--t-fast);
}

.whatsapp-link:hover { color: var(--bege) !important; }

/* ============================================
   FOOTER
============================================ */

footer {
  background: var(--verde-profundo);
  color: rgba(253, 251, 247, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-logo img { height: 52px; margin-bottom: 20px; }
.footer-logo p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

footer h4 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 400;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(253, 251, 247, 0.6);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col a:hover { color: var(--bege); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 64px 0;
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(253, 251, 247, 0.4);
  text-transform: uppercase;
}

/* ============================================
   WHATSAPP FLUTUANTE
============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: all var(--t-med);
  font-size: 24px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================
   SCROLL REVEAL
============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* ============================================
   RESPONSIVO
============================================ */

@media (max-width: 1100px) {
  .container, .nav, .cta-wrap { padding-left: 48px; padding-right: 48px; }
  .ato-2-grid, .ato-3-grid, .espaco-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: span 3; }
}

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 10px !important; }

  .hero h1 { font-size: clamp(40px, 12vw, 64px); }
  .hero-sub { font-size: 16px; }
  .manifesto { padding: 100px 24px; }

  .ato-2-grid, .ato-3-grid, .espaco-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .ato-2 { padding: 100px 0; }
  .ato-2-media { aspect-ratio: 4 / 3; }

  .robe { padding: 100px 0; }
  .robe-gallery { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }

  .ato-3 { padding: 100px 0; }
  .ato-3-media { aspect-ratio: 3 / 4; }

  .ato-4 { padding: 100px 0; }
  .ato-4-head { padding: 0 24px; margin-bottom: 48px; }
  .gallery { grid-template-columns: repeat(6, 1fr); padding: 0 16px; gap: 12px; }
  .gallery figure { grid-column: span 3 !important; grid-row: span 1 !important; aspect-ratio: 3 / 4 !important; }
  /* Primeira foto: full-width + aspect vertical para não cortar rosto da noiva */
  .gallery figure:first-child { grid-column: span 6 !important; aspect-ratio: 3 / 4 !important; }
  .gallery figure:first-child img { object-position: center top; }

  .detalhes { padding: 100px 0; }
  .detalhes-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; gap: 12px; }
  .detalhes-head { padding: 0 24px; }

  .entorno { padding: 100px 0; }
  .entorno-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 48px; }

  .depoimentos { padding: 100px 0; }
  .depoimentos-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .depoimentos-grid > .depoimento { grid-column: 1 / -1 !important; }

  .espaco { padding: 100px 0; }
  .espaco-grid { grid-template-columns: 1fr; }
  .espaco-head { padding: 0 24px; }

  .cta-final { padding: 100px 0; }
  .cta-wrap { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }
  .footer-bottom { padding: 24px 24px 0; }
  .footer-col:last-child { grid-column: span 1; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .section-title { font-size: clamp(32px, 8vw, 48px); }
}
