/* Reset and Base Styles */
/* Última atualização: 09/03/2026 - Otimizado */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevenção de scroll horizontal */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

:root {
  --primary-color: #111111;
  --secondary-color: #ffffff;
  --accent-color: #ffffff;
  --text-dark: #111111;
  --text-light: #5f5f5f;
  --bg-light: #ffffff;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --watercolor-green: #2a2a2a;
  --watercolor-beige: #ffffff;
  --watercolor-sage: #f2f2f2;
  --border-radius-sm: 10px;
  --border-radius-md: 15px;
  --border-radius-lg: 20px;
  --transition-speed: 0.4s;
  --transition-fast: 0.2s;
  --transition-slow: 0.6s;
}

body {
  font-family: "Bodoni", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Great Vibes", cursive;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Navigation Menu - Watercolor Style */
.navbar {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 15px 0;
  transition: all 0.2s ease;
}

/* Navbar branco somente na página inicial */
.home-page .navbar {
  background-color: transparent;
}

.home-page .navbar.scrolled {
  background-color: #ffffff !important;
}

.navbar.scrolled {
  background-color: #ffffff !important;
  padding: 12px 0;
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.nav-logo {
  width: 100px;
  height: 80px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .navbar-brand {
  color: var(--text-dark) !important;
  text-shadow: none;
}

.navbar-nav {
  align-items: center;
}

.navbar-desktop-menu {
  margin-left: auto;
}

.nav-link {
  color: var(--text-dark) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300 !important;
  padding: 8px 16px !important;
  position: relative;
}

/* CORREÇÃO: Garantir que links ativos mantenham o peso 300 */
.nav-link.active {
  font-weight: 300 !important;
}

/* EFEITO DE LINHA SIMPLES - Tamanho do texto */
.nav-link::after {
  content: "";
  position: absolute;
  width: calc(100% - 32px);
  height: 2px;
  bottom: 4px;
  left: 16px;
  background-color: var(--text-dark);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
  text-shadow: none;
}

.navbar.scrolled .nav-link::after {
  background-color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark) !important;
}

/* ======================================== */
/* DROPDOWN - SETA REFORÇADA COM HOVER      */
/* ======================================== */

/* Remove qualquer pseudo-elemento que possa estar atrapalhando */
.nav-link.dropdown-toggle::before {
  display: none !important;
}

/* Força a seta a aparecer - estado inicial (para baixo) */
.nav-link.dropdown-toggle::after {
  display: inline-block !important;
  margin-left: 0.5rem !important;
  vertical-align: middle !important;
  content: "" !important;
  border-top: 0.4em solid var(--text-dark) !important;
  border-right: 0.4em solid transparent !important;
  border-bottom: 0 !important;
  border-left: 0.4em solid transparent !important;
  opacity: 1 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transition: transform 0.2s ease;
}

/* EFEITO HOVER - seta vira para cima ao passar o mouse */
.nav-link.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* DROPDOWN ABRIR NO HOVER */
.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0;
}

/* Quando o dropdown está aberto (hover) - seta para cima */
.dropdown:hover .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Remove o comportamento padrão de clique do Bootstrap */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 25px rgba(139, 157, 124, 0.2);
  border-radius: 0;
  padding: 10px 0;
  background-color: var(--primary-color);
  backdrop-filter: blur(10px);
  margin-top: 0;
  display: none;
}

/* ======================================== */
/* DROPDOWN ITEMS - SOLUÇÃO DEFINITIVA COM SPAN */
/* ======================================== */

.dropdown-item {
  padding: 10px 25px;
  color: var(--text-dark) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  position: relative;
  background-color: transparent;
}

/* CORREÇÃO: Garantir que dropdown items ativos mantenham o peso 300 */
.dropdown-item.active {
  font-weight: 300 !important;
}

/* Remove qualquer pseudo-elemento direto do dropdown-item que possa existir */
.dropdown-item::after {
  display: none !important;
}

/* Estilo do span que envolve o texto */
.dropdown-item span {
  position: relative;
  display: inline-block;
}

/* Linha que aparece no hover - exatamente do tamanho do texto */
.dropdown-item span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--text-dark);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* No hover, a linha aparece */
.dropdown-item:hover span::after,
.dropdown-item:focus span::after,
.dropdown-item:active span::after,
.dropdown-item.active span::after {
  opacity: 1;
}

/* Remove qualquer fundo ou movimento do texto */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
  background-color: transparent !important;
  color: var(--text-dark) !important;
}

/* Toggler styles */
.navbar-toggler {
  border-color: var(--text-dark);
  padding: 6px 10px;
  position: relative;
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--text-dark);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(90, 90, 90, 0.25);
}

.navbar.scrolled .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 157, 124, 0.25);
}

/* Ícone hamburguer customizado com efeito X */
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon span {
  top: 8px;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

/* Quando scrolled, mantém cor */
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after,
.navbar.scrolled .navbar-toggler-icon span {
  background-color: var(--text-dark);
}

/* Transformação em X quando aberto */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 8px;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 8px;
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .navbar .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .navbar-brand {
    margin-right: 18px;
    margin-bottom: 0;
    padding: 0;
  }

  .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    width: auto;
    flex-grow: 1;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .navbar-desktop-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 2px;
    width: auto;
    margin-left: auto;
  }

  .navbar-desktop-menu .nav-link {
    white-space: nowrap;
    line-height: 1.2;
    font-size: 0.82rem;
    padding: 8px 10px !important;
  }

  .nav-logo {
    width: 110px;
    height: auto;
    max-height: 86px;
  }
}

/* Mobile responsive */
@media (max-width: 991px) {
  .navbar,
  .navbar.scrolled {
    padding: 18px 0;
  }

  .nav-logo {
    width: 88px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    display: block;
  }

  /* Ícone do menu hamburguer em text-dark no mobile */
  .navbar-toggler {
    border-color: var(--text-dark);
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    background-color: var(--text-dark);
  }

  /* Quando o menu abre, ícone X também fica text-dark */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    background-color: var(--text-dark);
  }

  /* Navbar fica branca quando o menu é aberto */
  .navbar.menu-open {
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }
  .navbar-collapse {
    background-color: #ffffff;
    padding: 0px;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
  }

  .navbar-nav {
    align-items: flex-end;
    position: relative;
    z-index: 1001;
  }

  .nav-item {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
  }

  /* DROPDOWN - ajuste específico */
  .nav-item.dropdown {
    display: block;
  }

  .nav-link {
    padding: 12px 20px !important;
    text-align: right;
    width: auto;
    display: inline-block;
    font-weight: 300;
    position: relative;
    z-index: 1003;
    pointer-events: auto;
  }

  /* CORREÇÃO: Garantir que links ativos mantenham o peso 300 no mobile */
  .nav-link.active {
    font-weight: 300 !important;
  }

  /* Ajuste da seta do dropdown no mobile */
  .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
  }

  .nav-link.dropdown-toggle::after {
    float: none !important;
    margin-top: 0 !important;
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
    order: 0;
    transition: transform 0.2s ease;
  }

  /* Hover no mobile também */
  .nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
  }

  /* DROPDOWN ABRIR NO HOVER - desativado no mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Mantém o comportamento de clique no mobile */
  .dropdown.show .dropdown-menu {
    display: block !important;
  }

  /* Linha no mobile */
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    right: 20px;
    left: auto;
    background-color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    opacity: 1;
    width: calc(100% - 40px);
  }

  /* DROPDOWN MENU - Mobile */
  .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: var(--secondary-color);
    margin-top: 5px !important;
    margin-bottom: 10px;
    width: auto;
    min-width: 100%;
    text-align: right;
    position: relative !important;
    inset: auto !important;
    float: none;
    padding-right: 25px;
    display: none;
    z-index: 999;
    pointer-events: auto;
  }

  .dropdown-item {
    text-align: right;
    padding: 10px 25px;
    color: var(--text-dark) !important;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    background-color: transparent;
  }

  /* CORREÇÃO: Garantir que dropdown items ativos mantenham o peso 300 no mobile */
  .dropdown-item.active {
    font-weight: 300 !important;
  }

  /* Remove qualquer pseudo-elemento direto do dropdown-item no mobile */
  .dropdown-item::after {
    display: none !important;
  }

  .dropdown-item span {
    position: relative;
    display: inline-block;
  }

  .dropdown-item span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    right: 0;
    left: auto;
    background-color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .dropdown-item:hover span::after,
  .dropdown-item:focus span::after,
  .dropdown-item:active span::after,
  .dropdown-item.active span::after {
    opacity: 1;
  }

  /* Remove qualquer movimento do texto */
  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active,
  .dropdown-item.active {
    background-color: transparent !important;
    color: var(--text-dark) !important;
  }
}

/* Pequenos ajustes para telas muito pequenas */
@media (max-width: 576px) {
  .nav-logo {
    width: 78px;
    height: auto;
    max-height: 56px;
  }
}

/* Ajuste para centralizar a imagem quadrada */
.hero-countdown {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  position: relative;
  z-index: 1;
  align-items: center; /* Centraliza horizontalmente */
  justify-content: center; /* Centraliza verticalmente */
}

.brand-container {
  width: 100%;
  margin-bottom: 20px; /* Espaço entre a marca e a imagem */
  text-align: center;
}

/* Texto da marca do casal com fonte especial */
.couple-brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  color: var(--primary-color);
  margin-top: 15vh;
}

.brand-image-top {
  margin-top: 5vh;
  margin-bottom: 5vh;
  max-width: 400px; /* Ajuste conforme o tamanho da sua marca */
  height: auto;
  display: inline-block;
}

.countdown-card {
  max-width: 1200px; /* Card bem menor */
  width: 100%; /* Largura responsiva */
  height: 45vh;
  margin: 0 auto; /* Centraliza */
  background-color: rgba(0, 0, 0, 0.74);
  border-radius: 0;
  overflow: hidden;
}

.couple-image {
  margin-top: 0;
  width: 100%;
  max-width: 560px; /* Aumentado para aproximadamente o dobro */
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
/* Responsividade para mobile */
@media (max-width: 768px) {
  .countdown-card {
    width: 90%;
    max-width: 280px;
    height: 25vh;
  }

  .countdown-content {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .countdown-card {
    width: 98%;
    max-width: 400px;
    height: 25vh;
  }

  .countdown-content {
    padding: 20px 10px;
  }

  .brand-image-top {
    max-width: 320px;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
}

/* Wedding Info antes do contador */
.wedding-info {
  margin-bottom: 2vh;
  text-align: center;
  padding: 1vh 0;
  display: block;
  width: 100%;
}

.wedding-date-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8vw;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.8vh;
  flex-wrap: wrap;
}

.day-month {
  font-size: clamp(1.5rem, 4vh, 2.5rem);
  font-weight: 300;
  color: var(--primary-color);
  letter-spacing: 2px;
  line-height: 1.2;
}

.month-year {
  font-size: clamp(1rem, 2vh, 1.5rem);
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 2px;
  line-height: 1.2;
}

.wedding-location {
  font-size: clamp(1rem, 2.5vh, 1.5rem);
  color: var(--secondary-color);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.location {
  display: inline-block;
  padding: 0.8vh 2vw;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Countdown Styles */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.countdown-number-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 0;
  width: 75px;
  height: 75px;
  padding: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 8px;
  overflow: visible;
}

/* Linha branca divisória no meio */
.countdown-number-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 15%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.8) 85%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
}

.minus-sign {
  font-family: "Italianno", cursive;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-right: 2px;
  transform: translateY(-2px);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-number {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #f5f1e8;
  line-height: 1;
  transform: translateY(-2px);
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.countdown-label {
  font-size: 10px;
  border-radius: 8px;
  letter-spacing: 1px;
  color: #f5f1e8;
  margin-top: 0.3vh;
  font-weight: 500;
  width: 75px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Quando for negativo, mantém a linha branca mas muda a cor de fundo */
.countdown-item.negative .countdown-number-wrapper {
  background-color: transparent;
}

.countdown-item.negative .minus-sign,
.countdown-item.negative .countdown-number {
  color: #ffffff;
}

/* Responsividade - Contador mantém ajustes */
@media (max-width: 992px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .hero-countdown {
    max-width: 900px;
  }

  .countdown-container {
    max-width: 500px;
    gap: 10px;
  }

  .countdown-number-wrapper {
    width: 75px;
    height: 75px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    width: 75px;
    height: 24px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .hero-countdown {
    max-width: 700px;
  }

  .day-month,
  .month-year {
    font-size: clamp(1.5rem, 4vh, 2.2rem);
  }

  .wedding-location {
    font-size: clamp(1rem, 2.5vh, 1.3rem);
  }

  .countdown-container {
    max-width: 550px;
    gap: 10px;
    margin-bottom: 4vh;
  }

  .countdown-item {
    min-width: 70px;
  }

  .countdown-number-wrapper {
    width: 70px;
    height: 70px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 26px;
  }

  .countdown-label {
    width: 70px;
    height: 22px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .hero-countdown {
    max-width: 550px;
  }

  .countdown-container {
    max-width: 480px;
    gap: 8px;
    margin-bottom: 3vh;
  }

  .countdown-item {
    min-width: 65px;
  }

  .countdown-number-wrapper {
    width: 65px;
    height: 65px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 24px;
  }

  .countdown-label {
    width: 65px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .wedding-info {
    padding: 0.5vh 0;
  }

  .day-month,
  .month-year {
    font-size: clamp(1.3rem, 3.5vh, 1.8rem);
  }

  .month-year {
    font-size: clamp(0.75rem, 2vh, 1rem);
  }

  .wedding-location {
    font-size: clamp(0.9rem, 2vh, 1.1rem);
  }

  .countdown-container {
    max-width: 400px;
    gap: 6px;
    margin-bottom: 2.5vh;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number-wrapper {
    width: 60px;
    height: 60px;
    padding: 5px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 22px;
  }

  .countdown-label {
    width: 60px;
    height: 18px;
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .countdown-container {
    max-width: 380px;
    gap: 6px;
  }

  .countdown-item {
    min-width: 58px;
  }

  .countdown-number-wrapper {
    width: 58px;
    height: 58px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 21px;
  }

  .countdown-label {
    width: 58px;
    height: 18px;
    font-size: 8px;
  }
}

@media (max-width: 390px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .countdown-container {
    max-width: 340px;
  }

  .countdown-item {
    min-width: 55px;
  }

  .countdown-number-wrapper {
    width: 55px;
    height: 55px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 20px;
  }

  .countdown-label {
    width: 55px;
    height: 17px;
    font-size: 7.5px;
  }
}

@media (max-width: 375px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .countdown-container {
    max-width: 320px;
  }

  .countdown-item {
    min-width: 52px;
  }

  .countdown-number-wrapper {
    width: 52px;
    height: 52px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 19px;
  }

  .countdown-label {
    width: 52px;
    height: 16px;
    font-size: 7px;
  }
}

@media (max-width: 320px) {
  /* Contador - MANTÉM OS AJUSTES FINOS */
  .countdown-container {
    max-width: 280px;
  }

  .countdown-item {
    min-width: 48px;
  }

  .countdown-number-wrapper {
    width: 48px;
    height: 48px;
    padding: 3px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 17px;
  }

  .countdown-label {
    width: 48px;
    height: 15px;
    font-size: 6.5px;
  }
}

/* Desktop - reduzir tamanho visual dos contadores para melhor encaixe em telas grandes */
@media (min-width: 769px) {
  .countdown-container {
    max-width: 420px; /* reduz o espaço total ocupado */
    gap: 8px;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number-wrapper {
    width: 60px;
    height: 60px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 22px;
  }

  .countdown-label {
    width: 60px;
    height: 20px;
    font-size: 10px;
  }
}

/* Event Info Section */
.event-info {
  width: 100%;
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== EVENT SUBTITLE TOP - AJUSTADO ===== */
.event-subtitle-top {
  text-align: center;
  color: var(--text-dark);
  font-style: italic;
  margin-top: 5vh;
  margin-bottom: 5vh;
  font-size: 19px;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
  hyphens: auto;
}

/* ===== EVENT CARDS - SEM GAP NO CONTAINER ===== */
.event-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 20px 0 20px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 0;
}

.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  transition: transform 0.3s ease;
  flex: 0 1 auto;
  width: 260px;
  margin-right: 50px;
}

/* Remove a margem do último card */
.event-card:last-child {
  margin-right: 0;
}

/* Ajuste para o primeiro card também não ter margem esquerda */
.event-card:first-child {
  margin-left: 0;
}

.event-card:hover {
  transform: translateY(-8px);
}

/* Image Container - garante que todas as imagens tenham o mesmo espaço */
.event-card .image-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: transparent;
}

.event-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

.event-card:hover img {
  opacity: 0.9;
}

.event-card h3 {
  font-size: 2.5rem;
  margin: 0;
  color: inherit;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
}

.event-subtitle {
  text-align: center;
  color: inherit;
  font-style: italic;
  margin-top: 15px;
  font-size: 0.9rem;
}

/* ===== BANNER DA NOIVA ===== */
.banner-container {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceremony-card {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--primary-color);
  box-shadow: none;
  padding: 14px 26px 18px;
  position: relative;
  text-align: center;
}

.ceremony-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--primary-color);
  pointer-events: none;
}

.ceremony-card-top {
  position: relative;
  z-index: 1;
  min-height: 62px;
}

.ceremony-date {
  margin: 0;
  font-family: "Montserrat", serif;
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1.5px;
}

.ceremony-monogram {
  position: absolute;
  top: -2px;
  right: 2px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.ceremony-monogram-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.ceremony-title {
  position: relative;
  z-index: 1;
  margin: 10px 0 16px;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-color);
  font-size: clamp(2.1rem, 1.2vw + 1.7rem, 3rem);
  letter-spacing: 2px;
  font-weight: 500;
}

.ceremony-image-wrap {
  position: relative;
  z-index: 1;
  margin: 0 auto 16px;
  max-width: 530px;
}

.ceremony-image {
  width: 100%;
  height: auto;
  display: block;
}

.ceremony-place {
  position: relative;
  z-index: 1;
  margin: 8px 0 10px;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.ceremony-address,
.ceremony-note,
.ceremony-dresscode {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  font-family: "Montserrat", serif;
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1.35;
}

.ceremony-card p + p {
  margin-top: 18px;
}

.ceremony-card p + p {
  margin-top: 30px;
}

.ceremony-address {
  max-width: 520px;
  font-size: 13px;
  padding: 10px 20px;
  margin-top: 30px;
}

.ceremony-note {
  max-width: 540px;
  margin-top: 0;
  padding: 10px 20px;
  font-size: 13px;
}

.ceremony-dresscode {
  margin-top: 0;
  font-size: 13px;
  padding: 10px 20px;
  font-weight: 500;
}

.ceremony-icons {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: clamp(52px, 7vw, 95px);
  color: var(--primary-color);
}

.ceremony-icon-image {
  width: clamp(110px, 13vw, 170px);
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===== BANNER DE LOCALIZAÇÃO ===== */
.location-card-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0 28px;
  padding: 0 20px;
}

.location-card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-light);
  border: 0.8px solid var(--primary-color);
  box-shadow: none;
  padding: 4px;
}

.location-card-frame {
  border: 0.8px solid var(--primary-color);
  padding: 22px 18px 20px;
  text-align: center;
}

.location-card-image {
  width: min(100%, 500px);
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.location-card-title {
  margin: 0 0 30px;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.location-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  max-width: 100%;
  padding: 10px 26px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  color: var(--primary-color);
  margin-bottom: 28px;
}

.location-card-text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary-color);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Imagem de fechamento da página */
.page-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.page-footer-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Botões de ação — mesmo formato DICAS (ícone + faixa), preto com texto branco */
.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
  max-width: none;
  margin: 2rem 0;
  width: 100%;
  padding: clamp(22px, 4vw, 34px) clamp(16px, 3vw, 28px);
  background: #000;
}

.action-cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.action-cta-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
  border-radius: 2px;
}

.action-cta-icon-slot {
  display: block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.action-cta-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}

.action-cta-btn {
  display: inline-block;
  width: auto;
  max-width: none;
  padding: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.action-cta-link:hover .action-cta-btn {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .action-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 4vw, 22px) clamp(8px, 2.5vw, 16px);
    padding: clamp(18px, 4vw, 26px) clamp(10px, 3vw, 16px)
      clamp(22px, 5vw, 32px);
  }

  .action-cta-icon,
  .action-cta-icon-slot {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .action-cta-btn {
    font-size: clamp(0.45rem, 2.1vw, 0.62rem);
    letter-spacing: 0.06em;
    line-height: 1.15;
  }
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet e Desktop pequeno */
@media (max-width: 992px) {
  .event-subtitle-top {
    font-size: 20px;
    max-width: 700px;
    padding: 0 20px;
    margin-top: 4vh;
    margin-bottom: 4vh;
  }

  .event-cards {
    margin: 15px 0 15px;
  }

  .event-card {
    width: 220px;
    margin-right: 40px;
  }

  /* Exceção para festa no tablet */
  .event-card:nth-child(3) {
    margin-right: 0;
  }

  .event-card .image-container {
    height: 180px;
  }

  .event-card h3 {
    font-size: 2.2rem;
  }

  /* Banner responsivo */
  .banner-container {
    max-width: 500px;
    margin: 25px auto;
  }
}

/* Mobile grande */
@media (max-width: 768px) {
  .event-subtitle-top {
    font-size: 18px;
    max-width: 600px;
    padding: 0 18px;
    margin-top: 3vh;
    margin-bottom: 3vh;
    line-height: 1.5;
  }

  .event-cards {
    margin: 10px 0 10px;
  }

  .event-card {
    width: 180px;
    margin-right: 35px;
  }

  .event-card:last-child {
    margin-right: 0;
  }

  .event-card .image-container {
    height: 160px;
  }

  .event-card h3 {
    font-size: 2rem;
  }

  .action-buttons {
    max-width: none;
    gap: 22px 20px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 24px 14px 30px;
    min-height: 0;
  }

  .action-cta-btn {
    max-width: none;
  }

  .ceremony-card {
    padding: 14px 18px 16px;
  }

  .ceremony-card-top {
    min-height: 54px;
  }

  .ceremony-card::before {
    inset: 4px;
  }

  .ceremony-date {
    font-size: 1.6rem;
  }

  .ceremony-monogram {
    width: 54px;
    height: 54px;
  }

  .ceremony-icon-image {
    width: clamp(95px, 16vw, 140px);
  }

  .ceremony-address,
  .ceremony-note,
  .ceremony-dresscode {
    max-width: 100%;
    padding: 0 8px;
    letter-spacing: 0.2px;
    overflow-wrap: anywhere;
  }

  .ceremony-card p + p {
    margin-top: 14px;
  }

  .location-card {
    max-width: 500px;
    padding: 12px;
  }

  .location-card-frame {
    padding: 16px 14px;
  }

  .location-card-btn {
    min-width: 230px;
    padding: 8px 20px;
    margin-bottom: 18px;
  }

  .location-card-text {
    font-size: 1rem;
    line-height: 1.35;
    padding: 0 8px;
  }

  /* Banner responsivo */
  .banner-container {
    max-width: 450px;
    margin: 20px auto;
  }
}

/* Mobile médio */
@media (max-width: 576px) {
  .action-buttons {
    padding: 22px 12px 34px;
    gap: 20px 14px;
  }

  .event-subtitle-top {
    font-size: 17px;
    max-width: 500px;
    padding: 0 15px;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
  }

  .event-cards {
    margin: 8px 0 8px;
  }

  .event-card {
    width: 150px;
    margin-right: 30px;
  }

  .event-card:last-child {
    margin-right: 0;
  }

  .event-card .image-container {
    height: 140px;
  }

  .event-card h3 {
    font-size: 1.8rem;
  }

  .ceremony-card {
    padding: 12px 14px 14px;
  }

  .ceremony-date {
    font-size: 0.76rem;
  }

  .ceremony-title {
    font-size: 1.65rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 0;
  }

  .ceremony-place {
    font-size: 1.35rem;
    letter-spacing: 1px;
  }

  .ceremony-address,
  .ceremony-note,
  .ceremony-dresscode,
  .location-card-text {
    font-size: 0.56rem;
    line-height: 1.3;
    margin-top: 0;
  }

  .ceremony-address,
  .ceremony-note,
  .ceremony-dresscode {
    padding: 6px 8px;
  }

  .ceremony-card p + p {
    margin-top: 10px;
  }

  .ceremony-icons {
    gap: 28px;
  }

  .ceremony-icon-image {
    width: 88px;
  }

  .location-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 4px;
  }

  .location-card-frame {
    padding: 14px 10px;
  }

  .location-card-title {
    font-size: 1.45rem;
    margin-bottom: 18px;
  }

  .location-card-btn {
    min-width: 190px;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    padding: 8px 16px;
    margin-bottom: 14px;
  }

  /* Banner responsivo */
  .banner-container {
    max-width: 400px;
    margin: 18px auto;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .event-subtitle-top {
    font-size: 12px;
    max-width: 100%;
    padding: 0 20px;
    margin-top: 2vh;
    margin-bottom: 2vh;
    line-height: 1.5;
  }

  .event-cards {
    flex-direction: column;
    align-items: center;
    margin: 5px auto;
  }

  .event-card {
    width: 240px;
    margin-right: 0;
    margin-bottom: 35px;
  }

  /* Remove margem inferior do último card */
  .event-card:last-child {
    margin-bottom: 0;
  }

  .event-card .image-container {
    height: 200px;
  }

  .event-card img {
    max-width: 85%;
    max-height: 85%;
  }

  .event-card h3 {
    font-size: 2.2rem;
  }

  .action-buttons {
    max-width: none;
    padding: 20px 10px 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .action-cta-btn {
    max-width: none;
  }

  .ceremony-date {
    font-size: 0.76rem;
  }

  .ceremony-monogram {
    width: 54px;
    height: 54px;
  }

  .ceremony-title {
    font-size: 1.65rem;
    letter-spacing: 1px;
  }

  .ceremony-place {
    font-size: 1.35rem;
    letter-spacing: 1px;
  }

  .ceremony-address,
  .ceremony-note,
  .ceremony-dresscode,
  .location-card-text {
    font-size: 0.56rem;
    padding: 5px 22px;
    line-height: 1.3;
  }

  .ceremony-card p + p {
    margin-top: 15px;
  }

  .ceremony-icon-image {
    width: 78px;
  }

  .location-card-title {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }

  .location-card-btn {
    min-width: 170px;
    font-size: 0.95rem;
    padding: 6px 12px;
  }

  /* Banner responsivo */
  .banner-container {
    max-width: 100%;
    margin: 15px auto;
    padding: 0 15px;
  }
}

/* Mobile muito pequeno */
@media (max-width: 380px) {
  .event-subtitle-top {
    font-size: 15px;
    padding: 0 15px;
    margin-top: 1.5vh;
    margin-bottom: 1.5vh;
  }

  .event-cards {
    max-width: 280px;
    margin: 3px auto;
  }

  .event-card {
    width: 220px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .event-card:last-child {
    margin-bottom: 0;
  }

  .event-card .image-container {
    height: 180px;
  }

  .event-card img {
    max-width: 80%;
    max-height: 80%;
  }

  .event-card h3 {
    font-size: 2rem;
  }

  .ceremony-date {
    font-size: 0.76rem;
  }

  .ceremony-title {
    font-size: 1.65rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .ceremony-place {
    font-size: 1.35rem;
    letter-spacing: 1px;
  }

  .ceremony-address,
  .ceremony-note,
  .ceremony-dresscode,
  .location-card-text {
    font-size: 0.56rem;
    line-height: 1.3;
  }

  .ceremony-icon-image {
    width: 66px;
  }

  .ceremony-icons {
    gap: 20px;
  }

  .location-card-title {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }

  .location-card-btn {
    min-width: 155px;
    font-size: 0.95rem;
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  /* Banner responsivo */
  .banner-container {
    margin: 12px auto;
  }
}

/* Section Titles - Watercolor Style */
.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsividade dos títulos */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}

/* Our Story Section - CORRIGIDA para usar container igual event-info */
/* Our Story Section - com folhas decorativas */
.our-story {
  padding: 120px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.33); /* Mantém o fundo branco */
}

/* Folha no canto SUPERIOR ESQUERDO */
.our-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background-image: url("../images/principal/ramo1.png"); /* Ajuste o caminho conforme sua imagem */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
  pointer-events: none;
}

/* Folha no canto INFERIOR DIREITO */
.our-story::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-image: url("../images/principal/ramo8.png"); /* Ajuste o caminho conforme sua imagem */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   AJUSTES PARA IMAGENS DE LUZ E RAMO NO CELULAR
   ============================================ */

/* Our Story Section - Ajuste das folhas no mobile */
@media (max-width: 768px) {
  .our-story::before {
    width: 200px;
    height: 200px;
    opacity: 0.5;
  }

  .our-story::after {
    width: 200px;
    height: 200px;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .our-story::before {
    width: 150px;
    height: 150px;
    opacity: 0.4;
  }

  .our-story::after {
    width: 150px;
    height: 150px;
    opacity: 0.4;
  }
}

/* Messages Wall Section - Ajuste das luzes no mobile - OTIMIZADO */
@media (max-width: 992px) {
  .messages-wall::before {
    left: -180px;
    width: 350px;
    height: 350px;
    opacity: 0.15;
  }

  .messages-wall::after {
    right: -180px;
    width: 350px;
    height: 350px;
    opacity: 0.15;
  }
}

@media (max-width: 768px) {
  .messages-wall::before {
    left: -120px;
    width: 250px;
    height: 250px;
    opacity: 0.1;
  }

  .messages-wall::after {
    right: -120px;
    width: 250px;
    height: 250px;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .messages-wall::before {
    display: none; /* Oculta luzes em telas pequenas para melhor performance */
  }

  .messages-wall::after {
    display: none; /* Oculta luzes em telas pequenas para melhor performance */
  }
}

.our-story .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 3; /* Garante que o conteúdo fique acima das folhas */
}

.story-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  align-items: center;
}

/* Texto - lado esquerdo */
.story-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  width: 100%;
}

.story-text p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: justify;
}

.story-text p:last-of-type {
  margin-bottom: 0;
}

.signature {
  font-style: italic;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 20px;
  text-align: right;
  width: 100%;
}

/* Grid de Fotos - lado direito */
.story-photos {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

/* TODAS as fotos com o mesmo tamanho */
.photo-card {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(139, 157, 124, 0.15);
  transition: all 0.3s ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Responsivo Our Story */
@media (max-width: 992px) {
  .our-story {
    padding: 100px 0;
  }

  .story-layout {
    gap: 30px;
  }

  .story-text {
    max-width: 400px;
  }

  .story-photos {
    gap: 12px;
  }

  .photo-card {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .our-story {
    padding: 80px 0;
  }

  .story-layout {
    flex-direction: column;
    gap: 40px;
  }

  .story-text {
    max-width: 100%;
  }

  /* 2 colunas no mobile */
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .our-story {
    padding: 60px 0;
  }

  .story-photos {
    gap: 8px;
  }

  .photo-card {
    height: 190px;
  }

  .story-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .photo-card {
    height: 170px;
  }
}

@media (max-width: 380px) {
  .photo-card {
    height: 150px;
  }
}

@media (max-width: 320px) {
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card {
    height: 160px;
  }
}

/* Buttons - Watercolor Style */
.btn {
  display: inline-block;
  padding: 12px 35px;
  text-decoration: none;
  border-radius: 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 157, 124, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 157, 124, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-large {
  padding: 15px 45px;
  font-size: 1.1rem;
}

/* Messages Wall Section - Versão revisada e CORRIGIDA com suporte a gestos */
.messages-wall {
  padding: 120px 0;
  width: 100%;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Luzes em arco no lado esquerdo da messages-wall */
.messages-wall::before {
  content: "";
  position: absolute;
  left: -350px;
  top: 50%;
  transform: translateY(-70%);
  width: 1200px;
  height: 1200px;
  background-image: url("../images/principal/luzes.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* Luzes em arco no lado direito da messages-wall (espelhado) */
.messages-wall::after {
  content: "";
  position: absolute;
  right: -350px;
  top: 50%;
  transform: translateY(-70%) scaleX(-1);
  width: 1200px;
  height: 1200px;
  background-image: url("../images/principal/luzes.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.messages-wall .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.messages-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 60px;
}

/* LADO ESQUERDO */
.messages-left {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.messages-left .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.messages-left .section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* IMAGEM ADICIONADA */
.messages-image {
  margin-top: 20px;
  width: 100%;
  max-width: 280px;
  animation: float 6s ease-in-out infinite;
}

.messages-illustration {
  width: 50%;
  height: auto;
}

/* Desktop: centraliza conteúdo da coluna esquerda sem mudar layout da grade */
@media (min-width: 993px) {
  .messages-left {
    text-align: center;
    align-items: center;
  }

  .messages-left .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .messages-image {
    margin-left: auto;
    margin-right: auto;
  }
}

/* LADO DIREITO */
.messages-right-area {
  background: transparent;
  border: 1px solid var(--primary-color);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Melhorias para interação touch */
.messages-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.messages-carousel-container:active {
  cursor: grabbing;
}

.messages-carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.message-slide {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Garantir que todos os cards tenham o mesmo tamanho e espaçamento */
.message-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  cursor: default;
  -webkit-touch-callout: none;
}

.message-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.message-text {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.message-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  border-top: 2px solid #f0f0f0;
  padding-top: 15px;
  margin-top: auto;
  width: 100%;
}

/* SETAS DE NAVEGAÇÃO */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.carousel-arrow:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: -15px;
}

.carousel-arrow.next {
  right: -15px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* INDICADORES */
.carousel-indicators {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* BOTÃO */
.wall-button {
  margin-top: 16px;
  padding: 12px 32px;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  letter-spacing: 1px;
  max-width: 100%;
  white-space: nowrap;
}

.wall-button:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* FORM */
.message-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.message-form-container textarea,
.message-form-container input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  background: transparent;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

.message-form-container .wall-button {
  margin: 0 auto;
  display: block;
}

.message-form-container textarea:focus,
.message-form-container input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
  background: transparent;
}

.message-form-container textarea {
  min-height: 60px;
  resize: vertical;
}

.message-field-text {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.message-field-text textarea {
  max-width: 100%;
  padding-bottom: 28px;
}

.message-char-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.45);
  pointer-events: none;
  user-select: none;
  transition: color 0.2s ease;
}

.message-char-count.is-near-limit {
  color: rgba(17, 17, 17, 0.7);
}

.message-char-count.is-at-limit {
  color: #8b3a3a;
  font-weight: 500;
}

/* Feedback visual durante o arrasto */
.messages-carousel.swiping {
  transition: none !important;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
  .messages-wall {
    padding: 100px 0;
  }

  .messages-layout {
    gap: 50px;
  }

  .messages-left .section-title {
    font-size: 2.0rem;
  }

  .messages-image {
    max-width: 240px;
  }

  .message-card {
    padding: 25px 20px;
    min-height: 260px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .carousel-arrow.prev {
    left: -10px;
  }

  .carousel-arrow.next {
    right: -10px;
  }
}

@media (max-width: 992px) {
  .messages-wall {
    padding: 80px 0;
  }

  .messages-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .messages-left {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
  }

  .messages-left .section-title {
    font-size: 2.35rem;
    margin-bottom: 15px;
  }

  .messages-left .section-subtitle {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 30px;
  }

  .messages-image {
    margin-top: 10px;
    max-width: 260px;
  }

  .messages-right-area {
    margin-top: 0;
    padding: 50px;
    min-height: auto;
    max-width: 100%;
    border-radius: 20px;
  }

  .message-slide {
    gap: 15px;
  }

  .message-card {
    min-height: 250px;
    padding: 25px 20px;
  }

  .carousel-arrow {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .carousel-arrow.prev {
    left: -5px;
  }

  .carousel-arrow.next {
    right: -5px;
  }

  .wall-button {
    margin-top: 35px;
    padding: 12px 35px;
  }
}

@media (max-width: 768px) {
  .messages-wall {
    padding: 70px 0;
  }

  .messages-layout {
    gap: 40px;
  }

  .messages-left .section-title {
    font-size: 2.1rem;
  }

  .messages-left .section-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .messages-image {
    max-width: 220px;
  }

  .messages-right-area {
    padding: 40px 20px;
    max-width: 100%;
    position: relative;
  }

  /* Indicador de swipe para mobile */
  .messages-right-area::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
    pointer-events: none;
  }

  /* Mobile: 1 card por slide */
  .message-slide {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .message-card {
    width: 100%;
    min-height: auto;
    padding: 25px 20px;
    margin: 0;
    box-sizing: border-box;
  }

  .message-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .message-author {
    font-size: 1rem;
    padding-top: 12px;
  }

  /* Remove as setas no mobile */
  .carousel-arrow {
    display: none;
  }

  .carousel-indicators {
    margin-top: 25px;
    gap: 12px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .wall-button {
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 0.95rem;
    white-space: normal;
  }

  .message-form-container {
    gap: 12px;
    align-items: center;
  }

  .message-form-container textarea,
  .message-form-container input {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .message-form-container textarea {
    min-height: 100px;
  }

  .message-form-container .wall-button {
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  .messages-wall {
    padding: 60px 0;
  }

  .messages-layout {
    gap: 30px;
  }

  .messages-left .section-title {
    font-size: 1.85rem;
  }

  .messages-left .section-subtitle {
    font-size: 0.9rem;
  }

  .messages-image {
    max-width: 200px;
  }

  .messages-right-area {
    padding: 40px 15px;
  }

  .message-card {
    padding: 20px 15px;
  }

  .message-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .message-author {
    font-size: 0.9rem;
    padding-top: 10px;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-indicators {
    margin-top: 20px;
    gap: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .wall-button {
    margin-top: 25px;
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .message-form-container textarea,
  .message-form-container input {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .message-form-container textarea {
    min-height: 90px;
  }

  .message-form-container .wall-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .messages-wall {
    padding: 50px 0;
  }

  .messages-left .section-title {
    font-size: 1.7rem;
  }

  .messages-left .section-subtitle {
    font-size: 0.85rem;
  }

  .messages-image {
    max-width: 180px;
  }

  .messages-right-area {
    padding: 35px 12px;
  }

  .message-card {
    padding: 18px 12px;
  }

  .message-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .wall-button {
    padding: 10px 20px;
    font-size: 0.85rem;
    max-width: 250px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-arrow {
    display: none;
  }

  .message-form-container .wall-button {
    max-width: 250px;
  }
}

@media (max-width: 375px) {
  .messages-left .section-title {
    font-size: 1.55rem;
  }

  .messages-image {
    max-width: 160px;
  }

  .messages-right-area {
    padding: 30px 10px;
  }

  .message-card {
    padding: 16px 10px;
  }

  .message-text {
    font-size: 0.8rem;
  }

  .wall-button {
    padding: 10px 16px;
    font-size: 0.8rem;
    max-width: 220px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-arrow {
    display: none;
  }

  .message-form-container textarea,
  .message-form-container input {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .message-form-container textarea {
    min-height: 80px;
  }

  .message-form-container .wall-button {
    max-width: 220px;
  }
}

@media (max-width: 360px) {
  .messages-image {
    max-width: 140px;
  }

  .messages-right-area {
    padding: 25px 8px;
  }

  .message-card {
    padding: 15px 8px;
  }

  .wall-button {
    padding: 8px 12px;
    font-size: 0.75rem;
    max-width: 200px;
  }

  .message-form-container .wall-button {
    max-width: 200px;
  }
}

/* Cards vazios/placeholder */
.message-card.placeholder {
  background: linear-gradient(135deg, #f8f8f8, #eaeaea) !important;
  border: 2px dashed #ccc;
}

.message-card.placeholder .message-text,
.message-card.placeholder .message-author {
  background: linear-gradient(135deg, #f8f8f8, #eaeaea) !important;
  color: #aaa !important;
  border-top: 2px dashed #ccc;
}

/* TOAST NOTIFICATION - VERSÃO SUPERIOR DIREITA CORRIGIDA */
.custom-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999999;
  border-left: 5px solid #8b9d7c;
  display: none;
  align-items: flex-start;
  gap: 12px;
  max-width: 380px;
  min-width: 280px;
  width: auto;
  animation: slideInRight 0.3s ease;
}

.custom-toast.show {
  display: flex !important;
}

.custom-toast.success {
  border-left-color: #8b9d7c;
}

.custom-toast.error {
  border-left-color: #ff6b6b;
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.toast-icon {
  font-size: 1.4rem;
  line-height: 1.4;
  min-width: 28px;
  text-align: center;
  margin-top: 2px;
}

.toast-message {
  font-family: "Montserrat", sans-serif;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  font-weight: 400;
  flex: 1;
  padding-right: 5px;
}

/* Animação de entrada */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .custom-toast {
    top: 80px;
    right: 15px;
    left: 15px;
    max-width: none;
    width: auto;
    padding: 15px;
  }

  .toast-icon {
    font-size: 1.3rem;
    min-width: 26px;
  }

  .toast-message {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .custom-toast {
    top: 70px;
    right: 10px;
    left: 10px;
    padding: 12px 15px;
  }

  .toast-icon {
    font-size: 1.2rem;
    min-width: 24px;
  }

  .toast-message {
    font-size: 0.85rem;
  }
}

/* Godparents Section */
.godparents {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.godparents-group {
  margin-bottom: 60px;
}

.group-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.godparents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.godparent-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s;
}

.godparent-card:hover {
  transform: translateY(-5px);
}

.godparent-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 0;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.godparent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.godparent-card h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.godparent-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Quote Section */
.quote-section {
  padding: 80px 20px;
  text-align: center;
}

blockquote {
  max-width: 800px;
  margin: 0 auto 40px;
}

blockquote p {
  font-size: 1.8rem;
  color: var(--secondary-color);
  font-style: italic;
  line-height: 1.6;
}

.couple-photo {
  max-width: 500px;
  margin: 0 auto 30px;
}

.couple-photo img {
  width: 100%;
  border-radius: 0;
}

.see-you-soon {
  font-size: 2rem;
  font-family: "Great Vibes", cursive;
  color: var(--primary-color);
  margin-top: 30px;
}

/* Footer */
footer {
  background-image: url("../images/principal/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--secondary-color);
}

.footer-rings {
  width: 250px;
  height: 250px;
  opacity: 0.7;
}

/* Page Hero */
.page-hero {
  position: relative; /* Necessário para posicionamento da imagem */
  background-color: #ffffff;
  min-height: 150vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: hidden; /* Garante que a imagem não ultrapasse os limites */
}

/* Nova classe para a imagem de fundo */
.hero-background {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Equivalente ao background-size: cover */
  object-position: center; /* Equivalente ao background-position: center */
  z-index: 1;
  opacity: 0.28;
  filter: grayscale(100%) contrast(115%) brightness(95%);
  pointer-events: none; /* Permite clicar através da imagem */
}

.hero-writing {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(86vw, 600px);
  height: auto;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-writing {
    top: 50%;
    width: min(78vw, 420px);
  }
}

.page-hero .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.welcome-intro-section {
  background-color: #ffffff;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 96px);
}

.welcome-intro-inner {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-intro-date {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin: 0 0 0.35em;
  line-height: 1.35;
}

.welcome-intro-place {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.68rem, 1.35vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(47, 47, 47, 0.55);
  margin: 0 0 clamp(2rem, 5vw, 2.75rem);
  line-height: 1.5;
}

.welcome-intro-body {
  width: 100%;
}

.welcome-intro-body p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.84rem, 1.65vw, 0.95rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(47, 47, 47, 0.88);
  margin: 0 0 1.1em;
  text-align: center;
}

.welcome-intro-body p:last-child {
  margin-bottom: 0;
}

.welcome-intro-signoff {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.84rem, 1.65vw, 0.92rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(47, 47, 47, 0.72);
  margin: clamp(1.75rem, 4vw, 2.25rem) 0 0;
  text-align: center;
}

@media (max-width: 768px) {
  .welcome-intro-section {
    padding-top: 10px;
    padding-bottom: clamp(40px, 8vw, 64px);
  }

  .welcome-intro-place {
    margin-bottom: clamp(1.35rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .welcome-intro-section {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.location-showcase-section {
  background-color: #f5f5f5;
  padding: 90px 0 100px;
}

.how-to-arrive-section {
  background-color: #ffffff;
  padding: clamp(48px, 8vw, 88px) 20px clamp(56px, 9vw, 96px);
}

.how-to-arrive-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.how-to-arrive-title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111111;
  line-height: 1.35;
}

.how-to-arrive-lead {
  margin: 0 0 clamp(32px, 5vw, 44px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.84rem, 1.65vw, 0.95rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(47, 47, 47, 0.88);
}

.how-to-arrive-block {
  margin-bottom: clamp(28px, 4vw, 36px);
}

.how-to-arrive-block:last-child {
  margin-bottom: 0;
}

.how-to-arrive-subtitle {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.84rem, 1.65vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--primary-color);
}

.how-to-arrive-text {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.84rem, 1.65vw, 0.95rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(47, 47, 47, 0.88);
}

.how-to-arrive-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .how-to-arrive-section {
    padding: 48px 16px 56px;
  }
}

.location-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.location-showcase-main {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.location-event-card {
  background: transparent;
  border: 0;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 250px;
}

.location-showcase-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111111;
  margin: 0 0 6px;
}

.location-event-icon {
  width: min(100%, 120px);
  height: 86px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: grayscale(100%);
}

.location-event-date,
.location-event-detail {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.5;
}

.location-event-date {
  font-size: 0.86rem;
  font-weight: 600;
}

.location-event-detail {
  font-size: 0.82rem;
  font-weight: 400;
}

.location-event-map-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.65);
  padding-bottom: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.location-event-map-btn:hover {
  opacity: 0.72;
}

.location-event-map-btn .map-arrow {
  font-size: 0.88rem;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.location-event-map-btn:hover .map-arrow {
  transform: translateX(3px);
}

.location-event-note {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.03em;
  color: rgba(47, 47, 47, 0.52);
  margin: 4px 0 0;
  text-align: center;
  line-height: 1.45;
  max-width: 22em;
}

@media (max-width: 768px) {
  .location-showcase-main {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .location-event-card {
    min-height: 0;
  }
}

.wedding-info-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-image: url("../images/noivos/img4.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.wedding-info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.767);
  z-index: 1;
}

.wedding-info-section .container {
  position: relative;
  z-index: 2;
}

.wedding-info-section .countdown-card {
  background-color: transparent;
  height: 100vh;
  min-height: 320px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 56px 24px;
  margin-left: 0;
  margin-right: auto;
}

.wedding-info-section .events-grid {
  display: flex;
  gap: 18px;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* empilha os contadores verticalmente */
}

.wedding-info-section .event-countdown {
  background: rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 8px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  color: #fff;
}

.wedding-info-section .event-countdown .event-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.wedding-info-section .event-countdown .event-title {
  color: #ffffff; /* título em preto conforme solicitado */
}

.wedding-info-section .event-countdown .event-type {
  color: #fff; /* local em branco */
  margin-bottom: 6px;
}

.wedding-info-section .event-countdown .event-date-label {
  font-weight: 700;
  margin-bottom: 8px;
}

.wedding-info-section .event-countdown .countdown-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.wedding-info-section .day-month,
.wedding-info-section .month-year {
  color: #ffffff;
}

.wedding-info-section .wedding-info {
  text-align: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.wedding-info-section .wedding-date-info {
  align-items: center;
}

.wedding-info-section .countdown-container {
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.wedding-info-section .countdown-item {
  align-items: center;
}

.page-hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: "Great Vibes", cursive;
  text-shadow: none;
}

.rings-decoration {
  margin: 20px 0;
}

.rings-decoration img {
  width: 60px;
  height: 60px;
  filter: opacity(0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .wedding-info-section {
    background-position: 58% center;
  }

  .wedding-info-section .countdown-card {
    min-height: 280px;
    width: 100%;
    padding: 42px 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero {
    min-height: calc(60vh - 70px);
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }

  .hero-background {
    top: 16px; /* Ajuste para mobile */
    object-fit: cover;
    object-position: center;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .rings-decoration img {
    width: 50px;
    height: 50px;
  }

  /* Reduzir tamanho das luzes em tablets */
  .page-hero::before,
  .page-hero::after {
    width: 250px;
    height: 450px;
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .wedding-info-section {
    background-position: 62% center;
  }

  .wedding-info-section .countdown-card {
    min-height: 250px;
    padding: 32px 10px;
  }

  .page-hero {
    min-height: 50vh;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }

  .hero-background {
    top: 12px; /* Ajuste para mobile menor */
    object-fit: cover;
    object-position: center;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  /* Ocultar luzes em mobile para melhor performance */
  .page-hero::before,
  .page-hero::after {
    display: none;
  }
}

/* Opcional: se quiser que a imagem se comporte como "contain" em mobile */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-background {
    object-fit: contain; /* Muda para contain em retrato mobile se preferir */
  }
}

/* Event Details */
.event-details {
  padding: 80px 20px;
  background-color: var(--white);
}

.details-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: var(--bg-light);
  padding: 50px;
  border-radius: 0;
  box-shadow: 0 10px 30px var(--shadow);
}

.icon-large {
  text-align: center;
  margin-bottom: 30px;
}

.icon-large svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
  color: var(--primary-color);
}

.details-card h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 0;
}

.detail-icon {
  width: 40px;
  height: 40px;
  stroke-width: 2;
  color: var(--primary-color);
  flex-shrink: 0;
}

.detail-item h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.detail-item p {
  color: var(--text-dark);
  line-height: 1.6;
}

.map-container {
  margin: 30px 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.info-box {
  max-width: 800px;
  margin: 40px auto;
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 0;
  border-left: 5px solid var(--primary-color);
}

.info-box h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.info-box ul {
  list-style: none;
}

.info-box ul li {
  padding: 10px 0;
  color: var(--text-dark);
  padding-left: 30px;
  position: relative;
}

.info-box ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.info-box p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.back-home {
  text-align: center;
  margin-top: 40px;
}

/* Party Schedule */
.party-schedule {
  max-width: 800px;
  margin: 40px auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 5px 20px var(--shadow);
}

.party-schedule h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--accent-color);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item .time {
  font-weight: bold;
  color: var(--primary-color);
  width: 100px;
  font-size: 1.1rem;
}

.schedule-item .event {
  flex: 1;
  color: var(--text-dark);
}

/* Dress Code */
.dress-code-section {
  padding: 100px 20px 40px;
}

.dress-code-wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.dress-code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dress-code-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin: 0;
}

.dress-code-guests {
  width: 100%;
  margin-bottom: clamp(8px, 2vw, 12px);
}

.dress-code-card--guests {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(20px, 4vw, 26px);
  gap: clamp(14px, 2.5vw, 20px);
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(114, 78, 61, 0.14);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.04);
}

.dress-code-info--guests {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.dress-code-media--guests {
  width: auto;
  max-width: min(160px, 42vw);
  margin: 0 auto;
  padding: 4px;
}

.dress-code-media--guests .dress-code-image {
  width: 100%;
  max-width: 152px;
  max-height: 140px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.dress-code-padrinhos-label {
  margin: clamp(28px, 5vw, 44px) 0 clamp(8px, 2vw, 14px);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.dress-code-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(114, 78, 61, 0.12);
  border-radius: 16px;
}

.dress-code-media {
  width: 100%;
  max-width: 360px;
  padding: 8px;
}

.dress-code-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.dress-code-info h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  text-align: center;
}

.dress-code-event-date {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--primary-color);
  text-align: center;
  opacity: 0.85;
}

.dress-code-info p {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dark);
  text-align: center;
}

.dress-code-info.dress-code-info--guests h3 {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  letter-spacing: 0.06em;
  text-align: center;
}

.dress-code-info.dress-code-info--guests p {
  text-align: center;
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.68;
  color: rgba(47, 47, 47, 0.92);
}

.dress-code-info.dress-code-info--guests p:last-child {
  margin-bottom: 0;
}

.dress-code-info.dress-code-info--guests .dress-code-guests-attire {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.dress-code-guest-event {
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.dress-code-info--guests .dress-code-guest-event:first-of-type {
  margin-top: clamp(16px, 2.5vw, 22px);
}

.dress-code-info--guests .dress-code-guest-event .dress-code-event-date {
  margin-bottom: 8px;
}

.dress-code-info--guests .dress-code-guest-event p {
  margin-bottom: 10px;
}

.dress-code-info--guests .dress-code-guest-event p:last-child {
  margin-bottom: 0;
}

.dress-code-palette {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dress-code-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.dress-code-dot-mulher-religioso-1 {
  background: #e8c5d1;
}

.dress-code-dot-mulher-religioso-2 {
  background: #e2aec1;
}

.dress-code-dot-mulher-religioso-3 {
  background: #dea0b6;
}

.dress-code-dot-mulher-cerimonia-1 {
  background: #9b6543;
}

.dress-code-dot-mulher-cerimonia-2 {
  background: #70412c;
}

.dress-code-dot-mulher-cerimonia-3 {
  background: #4f2a1d;
}

.dress-code-dot-homem-religioso-1 {
  background: #9c9da1;
}

.dress-code-dot-homem-religioso-2 {
  background: #7f8186;
}

.dress-code-dot-homem-cerimonia-1 {
  background: #dfd2c6;
}

.dress-code-dot-homem-cerimonia-2 {
  background: #d4bda5;
}

/* Dicas de Hospedagem */
.tips-section {
  --tips-block-gap: 10rem;
  background-color: transparent;
  padding: 80px 20px 50px;
}

.tips-section .container {
  background: transparent;
  padding: 0;
}

.tips-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tips-intro {
  text-align: center;
  margin: 0 auto 38px;
  max-width: 980px;
}

.tips-intro-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.13em;
  color: var(--primary-color);
}

.tips-intro-text {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}

.tips-block {
  background: rgb(0, 0, 0);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 46px clamp(20px, 4vw, 56px);
}

/* Mesma coluna e posição horizontal do tips-wrapper, dentro da faixa preta */
.tips-block > .tips-nearby,
.tips-block > .tips-title,
.tips-block > .tips-grid {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.tips-block + .tips-block {
  position: relative;
  margin-top: var(--tips-block-gap);
}

.tips-block + .tips-block::before {
  content: none;
}

.tips-block-central {
  margin-top: 0;
}

#dicas-hospedagem .tips-block + .tips-block {
  margin-top: 0;
}

#dicas-hospedagem .tips-block {
  background: #000;
}

#dicas-hospedagem .tips-block--light {
  background: #fff;
}

#dicas-hospedagem .tips-block--light .tips-title,
#dicas-hospedagem .tips-block--light .tips-subtitle {
  color: var(--text-dark);
}

#dicas-hospedagem .tips-block--light .tips-item--lodge h3 {
  color: var(--primary-color);
}

#dicas-hospedagem .tips-block--light .tips-item-visual {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(17, 17, 17, 0.05);
}

#dicas-hospedagem .tips-block--light .tips-lodge-booking-link:hover,
#dicas-hospedagem .tips-block--light .tips-lodge-booking-link:focus-visible {
  color: var(--primary-color);
}

.tips-nearby {
  margin-bottom: 0;
}

.tips-subtitle {
  margin: 0 0 44px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.12em;
  color: #fff;
}

.tips-grid-nearby {
  gap: 24px 70px;
}

.tips-title {
  text-align: center;
  margin: 0 0 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.12em;
  color: #fff;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 30px 70px;
}

.tips-item {
  text-align: center;
  max-width: 100%;
}

.tips-item p + p {
  margin-top: 0.35em;
}

.tips-item h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.07em;
  color: #fff;
  text-transform: uppercase;
}

.tips-item p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

/* Hospedagem — cards só com foto redonda + nome */
#dicas-hospedagem .tips-grid,
#dicas-hospedagem .tips-grid-nearby {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 34px) clamp(40px, 6vw, 72px);
}

/* Pousadas centrais: quantidade ímpar — último card centralizado na linha */
#dicas-hospedagem .tips-block-central .tips-grid > .tips-item--lodge:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: fit-content;
  max-width: min(100%, 28rem);
  margin-inline: auto;
  justify-self: center;
}

#dicas-hospedagem .tips-item--lodge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
}

#dicas-hospedagem .tips-item-visual {
  width: clamp(76px, 18vw, 104px);
  height: clamp(76px, 18vw, 104px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

#dicas-hospedagem .tips-item-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

#dicas-hospedagem .tips-item--lodge h3 {
  margin: 0;
  max-width: 22ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.72rem, 1.55vw, 0.88rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.96);
}

#dicas-hospedagem .tips-lodge-booking-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

#dicas-hospedagem .tips-lodge-booking-link:hover,
#dicas-hospedagem .tips-lodge-booking-link:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

/* O que fazer ao chegar — Tiradentes */
.arrive-guide-section {
  padding: 0 0 0;
}

.arrive-guide-band {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #000;
  padding: clamp(36px, 6vw, 52px) clamp(20px, 4vw, 48px);
  text-align: center;
}

.arrive-guide-band-inner {
  max-width: 720px;
  margin: 0 auto;
}

.arrive-guide-band-title {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.45;
}

.arrive-guide-band-lead {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.arrive-guide-body {
  background: #fff;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(44px, 7vw, 72px) clamp(20px, 5vw, 48px) clamp(36px, 5vw, 56px);
}

.arrive-guide-body-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.arrive-guide-heading {
  margin: 0 0 clamp(22px, 3.5vw, 32px);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
}

.arrive-guide-copy p {
  margin: 0 0 1.15em;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.arrive-guide-copy p:last-child {
  margin-bottom: 0;
}

.arrive-guide-copy strong {
  font-weight: 600;
  color: #000;
}

.arrive-guide-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #000;
}

.arrive-gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.arrive-gallery-img {
  width: 100%;
  height: 100%;
  min-height: clamp(160px, 26vw, 340px);
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

/* Onde comer — guia gastronômico */
.food-guide-section {
  background-color: transparent;
  padding: 0;
}

.food-guide-intro {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 980px;
  padding: 0 20px;
}

.food-guide-intro-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.13em;
  color: var(--primary-color);
}

.food-guide-intro-text {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}

.food-guide-container {
  padding: 0;
}

.food-guide-wrapper {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.food-guide-block {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 48px);
  box-shadow: none;
}

.food-guide-block:nth-child(odd) {
  background: #000;
}

.food-guide-block:nth-child(even) {
  background: #fff;
}

.food-guide-block + .food-guide-block {
  margin-top: 0;
}

.food-guide-category {
  margin: 0 0 clamp(28px, 4vw, 40px);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.food-guide-block:nth-child(odd) .food-guide-category {
  color: #fff;
}

.food-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  max-width: 980px;
  margin: 0 auto;
}

/* Almoço (5 itens) e Ao pôr do sol (2): cards da última linha centralizados */
#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(2) .food-guide-grid,
#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(3) .food-guide-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(2) .food-card,
#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(3) .food-card {
  grid-column: span 2;
}

#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(2) .food-card:nth-child(4) {
  grid-column: 2 / span 2;
}

#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(2) .food-card:nth-child(5) {
  grid-column: 4 / span 2;
}

#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(3) .food-card:nth-child(1) {
  grid-column: 2 / span 2;
}

#dicas-restaurantes .food-guide-wrapper > .food-guide-block:nth-child(3) .food-card:nth-child(2) {
  grid-column: 4 / span 2;
}

.food-card {
  text-align: center;
}

.food-card--no-media .food-card-title {
  margin-top: 0;
}

.food-card-media {
  margin: 0 auto 18px;
  max-width: 280px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.food-guide-block:nth-child(odd) .food-card-media {
  border-color: rgba(255, 255, 255, 0.2);
}

.food-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.food-card-title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.food-guide-block:nth-child(odd) .food-card-title {
  color: #fff;
}

.food-card-address {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #5c534c;
  line-height: 1.55;
}

.food-guide-block:nth-child(odd) .food-card-address {
  color: rgba(255, 255, 255, 0.78);
}

.food-card-desc {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #4a423a;
}

.food-guide-block:nth-child(odd) .food-card-desc {
  color: rgba(255, 255, 255, 0.88);
}

/* Dicas de salões de beleza */
.beauty-salon-section {
  padding: clamp(56px, 8vw, 88px) 20px clamp(64px, 9vw, 96px);
  background: #fff;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#dicas-taxistas.beauty-salon-section {
  margin-top: 0;
  padding-top: 0;
  background: #fff;
}

#dicas-taxistas .beauty-salon-header,
#dicas-saloes .beauty-salon-header {
  background: #000000;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(48px, 6vw, 72px) 20px clamp(36px, 5vw, 48px);
  margin-bottom: clamp(28px, 4vw, 40px);
  box-sizing: border-box;
}

#dicas-taxistas .beauty-salon-header .beauty-salon-title,
#dicas-taxistas .beauty-salon-header .beauty-salon-lead,
#dicas-saloes .beauty-salon-header .beauty-salon-title,
#dicas-saloes .beauty-salon-header .beauty-salon-lead {
  color: #ffffff;
}

.beauty-salon-inner {
  max-width: 920px;
  margin: 0 auto;
}

.beauty-salon-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.beauty-salon-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
}

.beauty-salon-header .beauty-salon-lead + .beauty-salon-lead {
  margin-top: 12px;
}

.beauty-salon-lead {
  margin: 0 auto;
  max-width: 640px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.75;
  color: #1a1a1a;
}

.beauty-salon-divider {
  width: 100%;
  max-width: 520px;
  height: 1px;
  margin: 0 auto clamp(36px, 5vw, 48px);
  background: #000;
  opacity: 0.85;
}

.beauty-salon-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 6vw, 72px);
  row-gap: clamp(36px, 5vw, 52px);
  align-items: start;
}

/* Último card centralizado quando a quantidade for ímpar */
#dicas-saloes .beauty-salon-columns > .beauty-salon-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: fit-content;
  max-width: min(100%, 26rem);
  margin-inline: auto;
}

.beauty-salon-card {
  text-align: center;
}

.beauty-salon-name {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}

.beauty-salon-address,
.beauty-salon-contact {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.65;
  color: #2a2a2a;
}

.beauty-salon-ig {
  margin: 4px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.beauty-salon-ig a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: lowercase;
}

.beauty-salon-ig a:hover {
  opacity: 0.65;
}

/* RSVP Form */
.rsvp-section {
  padding: 110px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.rsvp-card {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: transparent;
  padding: 48px 24px 56px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.rsvp-card::before {
  content: none;
}

.rsvp-card > * {
  position: relative;
  z-index: 1;
}

.rsvp-card h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.rsvp-section .form-intro {
  display: block;
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 320px;
  font-weight: 300;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.rsvp-access-panel {
  margin-bottom: 0;
}

.rsvp-unlock-btn {
  display: block;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rsvp-unlock-btn:hover {
  opacity: 0.65;
}

.rsvp-access-feedback {
  margin: 12px 0 0;
  min-height: 1.2em;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  text-align: left;
}

.rsvp-access-feedback.is-error {
  color: #8b3a3a;
}

.rsvp-profile-label {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.rsvp-section .form-group {
  margin-bottom: 26px;
}

.rsvp-section .form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rsvp-section .form-group input[type="text"],
.rsvp-section .form-group input[type="tel"],
.rsvp-section .form-group input[type="password"] {
  display: block;
  width: 100%;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  background: transparent;
  color: var(--text-dark);
  box-shadow: none;
}

.rsvp-section .form-group input::placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 300;
}

.rsvp-section #guestPhone {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

.rsvp-section .form-group input:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
  background: transparent;
}

.rsvp-field-block {
  margin-bottom: 26px;
}

.rsvp-add-companion {
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rsvp-add-companion:hover {
  color: var(--primary-color);
}

.rsvp-days-block {
  margin: 8px 0 32px;
  padding-top: 8px;
}

.rsvp-days-title {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.rsvp-days-list {
  display: flex;
  flex-direction: column;
}

.rsvp-day-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.rsvp-day-row:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.rsvp-day-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  line-height: 1;
}

.rsvp-day-options {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.rsvp-day-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.rsvp-day-option input[type="radio"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.rsvp-submit {
  margin-top: 4px;
}

/* Estilo para os campos de acompanhante */
#acompanhantes-container {
  margin-bottom: 8px;
}

.acompanhante-item {
  position: relative;
  animation: slideDown 0.3s ease;
}

.acompanhante-item:not(:last-child) {
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
}


/* Animação para novos campos */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão principal */
.rsvp-section .btn-large {
  display: block;
  padding: 10px 22px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 8px auto 0;
  width: auto;
  min-width: 118px;
  align-self: center;
  text-transform: none;
  border-radius: 999px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
}

.rsvp-section .btn-large:hover {
  transform: none;
  box-shadow: none;
  background: var(--primary-color);
  color: #ffffff;
}

.rsvp-section .btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.rsvp-section .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--primary-color);
  transform: none;
  box-shadow: none;
}

/* Mensagem de sucesso */
.rsvp-section .success-message {
  text-align: center;
  padding: 40px 0 20px;
  background: transparent;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 90px;
  height: 90px;
  color: #4caf50;
  margin: 0 auto 30px;
  stroke-width: 2;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.success-message h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

.success-message p {
  color: var(--text-dark);
  margin-bottom: 35px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsividade Avançada */
@media (max-width: 992px) {
  .rsvp-card {
    max-width: 560px;
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  .dress-code-section {
    padding: 80px 15px 30px;
  }

  .dress-code-card--guests {
    padding: 16px;
  }

  .dress-code-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dress-code-card {
    padding: 16px;
  }

  .tips-section {
    --tips-block-gap: 8rem;
    padding: 64px 15px;
  }

  .tips-wrapper {
    gap: 0;
  }

  .tips-section .container {
    padding: 0;
  }

  #dicas-hospedagem .tips-block + .tips-block {
    margin-top: 0;
  }

  .tips-block + .tips-block {
    margin-top: var(--tips-block-gap);
  }

  .tips-block + .tips-block::before {
    content: none;
  }

  .tips-block {
    padding: 30px 16px;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Mobile com mesma lógica de desktop - Dicas de hospedagem */
  #dicas-hospedagem .tips-grid,
  #dicas-hospedagem .tips-grid-nearby {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  #dicas-hospedagem .tips-item-visual {
    width: clamp(62px, 20vw, 86px);
    height: clamp(62px, 20vw, 86px);
  }

  #dicas-hospedagem .tips-item--lodge h3 {
    font-size: clamp(0.54rem, 2.15vw, 0.68rem);
    max-width: 24ch;
  }

  .tips-intro {
    margin-bottom: 30px;
  }

  .tips-nearby {
    margin-bottom: 0;
  }

  .tips-subtitle {
    margin-bottom: 30px;
  }

  .tips-title {
    margin: 0 0 30px;
  }

  .food-guide-section {
    padding: 0;
  }

  #dicas-taxistas.beauty-salon-section {
    padding-top: 0;
  }

  #dicas-taxistas .beauty-salon-header,
  #dicas-saloes .beauty-salon-header {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .food-guide-intro {
    margin-bottom: 24px;
    padding: 0 15px;
  }

  .arrive-guide-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .arrive-gallery-img {
    min-height: clamp(96px, 28vw, 200px);
  }

  .beauty-salon-section {
    padding: 48px 16px 56px;
  }

  .beauty-salon-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Mobile com mesma lógica de desktop - Salões e taxistas */
  #dicas-saloes .beauty-salon-columns,
  #dicas-taxistas .beauty-salon-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 20px;
  }

  #dicas-saloes .beauty-salon-name,
  #dicas-taxistas .beauty-salon-name {
    font-size: clamp(0.74rem, 2.1vw, 0.86rem);
    margin-bottom: 6px;
  }

  #dicas-saloes .beauty-salon-address,
  #dicas-saloes .beauty-salon-contact,
  #dicas-saloes .beauty-salon-ig,
  #dicas-taxistas .beauty-salon-contact {
    font-size: 0.62rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }

  .food-guide-block {
    padding: 32px 16px;
  }

  .food-guide-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Mobile com mesma lógica de desktop - Restaurantes */
  #dicas-restaurantes .food-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .food-card-media {
    max-width: 320px;
  }

  #dicas-restaurantes .food-card-media {
    max-width: 100%;
    margin-bottom: 8px;
  }

  #dicas-restaurantes .food-card-title {
    font-size: clamp(0.78rem, 2.1vw, 0.9rem);
    margin-bottom: 5px;
  }

  #dicas-restaurantes .food-card-address {
    font-size: 0.62rem;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  #dicas-restaurantes .food-card-desc {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .rsvp-section {
    padding: 90px 14px;
  }

  .rsvp-card {
    max-width: 100%;
    padding: 40px 24px;
  }

  .rsvp-card h2 {
    font-size: 1.15rem;
    margin-bottom: 24px;
  }

  .rsvp-section .form-group input[type="text"],
  .rsvp-section .form-group input[type="tel"],
  .rsvp-section .form-group input[type="password"] {
    padding: 8px 0 10px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 0;
    font-size: 0.88rem;
  }

  .rsvp-day-date {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  /* Mantém layout de desktop em telas menores (versão compacta) */
  #dicas-hospedagem .tips-grid,
  #dicas-hospedagem .tips-grid-nearby {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  #dicas-hospedagem .tips-item-visual {
    width: clamp(56px, 19vw, 78px);
    height: clamp(56px, 19vw, 78px);
  }

  #dicas-hospedagem .tips-item--lodge h3 {
    font-size: clamp(0.5rem, 2.55vw, 0.64rem);
  }

  #dicas-restaurantes .food-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  #dicas-restaurantes .food-card-title {
    font-size: 0.66rem;
  }

  #dicas-restaurantes .food-card-address {
    font-size: 0.54rem;
    margin-bottom: 4px;
  }

  #dicas-restaurantes .food-card-desc {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  #dicas-saloes .beauty-salon-columns,
  #dicas-taxistas .beauty-salon-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 14px;
  }

  #dicas-saloes .beauty-salon-name,
  #dicas-taxistas .beauty-salon-name {
    font-size: 0.66rem;
  }

  #dicas-saloes .beauty-salon-address,
  #dicas-saloes .beauty-salon-contact,
  #dicas-saloes .beauty-salon-ig,
  #dicas-taxistas .beauty-salon-contact {
    font-size: 0.54rem;
    line-height: 1.3;
  }

  .rsvp-card {
    padding: 34px 16px;
  }

  .rsvp-card h2 {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }

  .rsvp-section .form-group {
    margin-bottom: 22px;
  }

  .rsvp-section .form-group label {
    font-size: 0.64rem;
  }

  .rsvp-section .form-group input[type="text"],
  .rsvp-section .form-group input[type="tel"],
  .rsvp-section .form-group input[type="password"] {
    padding: 8px 0 10px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.22);
    font-size: 0.86rem;
  }

  .rsvp-day-row {
    padding: 14px 0;
  }

  .rsvp-section .btn-large {
    padding: 9px 20px;
    font-size: 0.8rem;
    min-width: 108px;
    border-radius: 999px;
  }

  .success-message {
    padding: 30px 20px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .success-message h3 {
    font-size: 2rem;
  }

  .success-message p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 380px) {
  .rsvp-card {
    padding: 28px 14px;
  }

  .rsvp-card h2 {
    font-size: 1.1rem;
  }

  .rsvp-section .btn-large {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* Garantindo que os selects também fiquem responsivos */
select {
  width: 100%;
  max-width: 100%;
}

/* Ajuste para o container do formulário em telas médias */
@media (min-width: 769px) and (max-width: 1024px) {
  .rsvp-card {
    max-width: 550px;
  }
}

/* Melhorias de acessibilidade */
.form-group input:focus-visible,
.form-group select:focus-visible,
.btn-large:focus-visible,
#btnAdicionarAcompanhante:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Mantendo os estilos originais que ainda são relevantes */
.couple-names {
  font-size: 3rem;
}

.save-date {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.wedding-date {
  font-size: 1.8rem;
  letter-spacing: 5px;
}

.section-title {
  font-size: 2rem;
}

.details-card {
  padding: 30px 20px;
}

.party-schedule {
  padding: 25px 15px;
}

.schedule-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.schedule-item .time {
  width: auto;
}

blockquote p {
  font-size: 1.3rem;
}

.radio-group {
  flex-direction: column;
  gap: 15px;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   FEED PAGE - QUADRADO CENTRALIZADO COM SCROLL
   ============================================ */

/* Container principal que ocupa a tela toda e centraliza o quadrado */
.feed-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  background: #ffffff;
}

/* Quadrado centralizado com fundo branco e sombra suave */
.feed-container {
  width: 700px;
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 35px;
  text-align: center;
}

/* Título principal com fonte cursiva */
.feed-title {
  font-family: "Great Vibes", cursive;
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Subtítulo */
.feed-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #6b6b6b;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.4;
}

/* Container com scroll APENAS VERTICAL */
.feed-gallery-container {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  margin-bottom: 25px;
  border-radius: 8px;
}

/* Custom scrollbar fina e elegante */
.feed-gallery-container::-webkit-scrollbar {
  width: 8px;
}

.feed-gallery-container::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 10px;
}

.feed-gallery-container::-webkit-scrollbar-thumb {
  background: #b8b8b8;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.feed-gallery-container::-webkit-scrollbar-thumb:hover {
  background: #999999;
}

/* Grid de fotos - Layout uniforme 3 colunas */
.feed-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 250px;
}

/* Cards de foto - tamanho uniforme SEM BORDAS */
.feed-gallery-item {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  background: transparent;
}

.feed-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
  background: transparent;
}

/* Container de ações (botões) */
.feed-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botão carregar mais */
.feed-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(143, 149, 123, 0.3);
  min-width: 180px;
}

.feed-btn:active {
  transform: translateY(-1px);
}

.feed-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Botão de upload/adicionar fotos */
.upload-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(143, 149, 123, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
}

.upload-btn:active {
  transform: scale(0.97);
}

.upload-btn svg,
.upload-btn i {
  font-size: 1.1rem;
}

/* Estados de Loading e Mensagens */
.loading-spinner,
.error-message,
.no-photos {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
}

.loading-spinner {
  color: var(--primary-color);
  font-weight: 500;
}

.loading-spinner::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  border: 3px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  color: #c94c4c;
  line-height: 1.6;
}

.error-message small {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.no-photos {
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   RESPONSIVIDADE MOBILE
   ============================================ */

@media (max-width: 768px) {
  .feed-page {
    padding: 85px 10px 30px;
    min-height: 100vh;
  }

  .feed-container {
    width: 100%;
    max-width: 100%;
    padding: 25px 18px;
    border-radius: 12px;
  }

  .feed-title {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .feed-subtitle {
    font-size: 0.82rem;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .feed-gallery-container {
    height: 500px;
    padding-right: 5px;
    margin-bottom: 18px;
  }

  /* Grid mobile: 1 coluna vertical - altura automática */
  .feed-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    grid-auto-rows: auto;
  }

  /* Cards com altura automática para mostrar imagem completa */
  .feed-gallery-item,
  .feed-gallery-item:nth-child(n),
  .feed-gallery-item:nth-child(9n + 1),
  .feed-gallery-item:nth-child(9n + 2),
  .feed-gallery-item:nth-child(9n + 3),
  .feed-gallery-item:nth-child(9n + 4),
  .feed-gallery-item:nth-child(9n + 5),
  .feed-gallery-item:nth-child(9n + 6),
  .feed-gallery-item:nth-child(9n + 7),
  .feed-gallery-item:nth-child(9n + 8),
  .feed-gallery-item:nth-child(3n + 1) {
    grid-row: span 1;
    height: auto;
    min-height: 200px;
  }

  /* Imagem ocupa toda largura mantendo proporção */
  .feed-gallery-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }

  /* Esconde ícone indicador em mobile */
  .feed-gallery-item::after {
    display: none;
  }

  .feed-actions {
    flex-direction: column;
    gap: 10px;
  }

  .feed-btn,
  .upload-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.9rem;
    min-width: unset;
  }

  .upload-btn svg {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .feed-page {
    padding: 75px 8px 20px;
  }

  .feed-container {
    padding: 22px 14px;
    border-radius: 10px;
  }

  .feed-title {
    font-size: 1.8rem;
  }

  .feed-subtitle {
    font-size: 0.78rem;
    margin-bottom: 16px;
  }

  .feed-gallery-container {
    height: 450px;
    margin-bottom: 16px;
  }

  .feed-gallery-grid {
    gap: 10px;
  }

  .feed-gallery-item {
    min-height: 180px;
  }

  .feed-gallery-item img {
    max-height: 350px;
  }

  .feed-btn,
  .upload-btn {
    padding: 12px 18px;
    font-size: 0.87rem;
  }
}

/* Modal de Imagem */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  max-width: 95%;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.close-modal {
  position: absolute;
  top: -50px;
  right: -10px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8f957b;
  border-radius: 50%;
  font-weight: 300;
  line-height: 1;
}

.close-modal:hover {
  background: #7d8469;
  transform: rotate(90deg) scale(1.1);
}

/* ============================================
   RESPONSIVIDADE - AJUSTES PARA TODAS AS TELAS
   ============================================ */

/* Telas grandes - 1000px a 1200px */
@media (max-width: 1100px) {
  .feed-container {
    width: 850px;
    padding: 45px 35px;
  }
}

/* Telas médias - 900px a 1000px */
@media (max-width: 1000px) {
  .feed-container {
    width: 750px;
    padding: 40px 30px;
  }

  .feed-title {
    font-size: 2.8rem;
  }

  .feed-gallery-item {
    height: 160px;
  }

  .feed-gallery-container {
    height: 480px;
  }
}

/* Tablet: 2 colunas - 700px a 850px */
@media (max-width: 850px) {
  .feed-container {
    width: 650px;
    padding: 35px 25px;
  }

  .feed-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feed-gallery-item {
    height: 200px;
  }

  .feed-title {
    font-size: 2.5rem;
  }

  .feed-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .feed-gallery-container {
    height: 450px;
  }

  .feed-btn {
    padding: 12px 35px;
    font-size: 0.95rem;
  }
}

/* Tablet pequeno - 600px a 700px */
@media (max-width: 700px) {
  .feed-container {
    width: 550px;
    padding: 30px 20px;
  }

  .feed-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feed-gallery-item {
    height: 170px;
  }

  .feed-title {
    font-size: 2.3rem;
  }

  .feed-gallery-container {
    height: 420px;
  }
}

/* Mobile grande: 1 coluna - 400px a 550px */
@media (max-width: 550px) {
  .feed-page {
    padding: 30px 15px;
  }

  .feed-container {
    width: 100%;
    padding: 25px 15px;
  }

  .feed-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feed-gallery-item {
    height: 280px;
  }

  .feed-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .feed-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .feed-gallery-container {
    height: 450px;
    padding-right: 8px;
  }

  .feed-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  /* Ajuste da scrollbar no mobile */
  .feed-gallery-container::-webkit-scrollbar {
    width: 4px;
  }
}

/* Mobile médio - 380px a 400px */
@media (max-width: 400px) {
  .feed-page {
    padding: 20px 12px;
  }

  .feed-container {
    padding: 20px 12px;
  }

  .feed-gallery-item {
    height: 240px;
  }

  .feed-title {
    font-size: 2rem;
  }

  .feed-subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .feed-gallery-container {
    height: 420px;
  }

  .feed-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    max-width: 250px;
  }
}

/* Mobile pequeno - até 380px */
@media (max-width: 380px) {
  .feed-page {
    padding: 15px 10px;
  }

  .feed-container {
    padding: 18px 10px;
  }

  .feed-gallery-item {
    height: 200px;
  }

  .feed-title {
    font-size: 1.8rem;
  }

  .feed-subtitle {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .feed-gallery-container {
    height: 400px;
    padding-right: 5px;
  }

  .feed-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    max-width: 220px;
    letter-spacing: 1px;
  }

  /* Scrollbar ainda mais fina */
  .feed-gallery-container::-webkit-scrollbar {
    width: 3px;
  }
}

/* ============================================
   ANIMAÇÕES ADICIONAIS
   ============================================ */

/* Animação de entrada para os elementos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feed-container {
  animation: fadeInUp 0.8s ease forwards;
}

.feed-gallery-item {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--item-index, 0) * 0.05s);
  opacity: 0;
}

/* ============================================
   ESTADO DE CARREGAMENTO (OPCIONAL)
   ============================================ */

/* Skeleton loading para quando as fotos estiverem carregando */
.feed-gallery-item.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================
   MODO RETRATO EM TABLETS (OPCIONAL)
   ============================================ */

@media (orientation: portrait) and (max-width: 900px) {
  .feed-gallery-container {
    height: 60vh;
  }

  .feed-gallery-item {
    height: auto;
    aspect-ratio: 1/1;
  }
}

/* ============================================
   TELAS MUITO ALTAS (OPCIONAL)
   ============================================ */

@media (min-height: 1000px) {
  .feed-gallery-container {
    height: 600px;
  }

  .feed-gallery-item {
    height: 200px;
  }
}

/**
 * ============================================
 * ESTILOS DA PÁGINA DE DICAS
 * Layout intercalado com efeito scroll reveal
 * ============================================
 */

/* Seções */
.dicas-section {
  padding: 80px 0;
  background-color: var(--white);
  overflow: hidden;
}

.dicas-section.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

/* Cards intercalados */
.dica-card {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.dica-card:last-child {
  margin-bottom: 0;
}

.dica-card.destaque {
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

/* Imagens */
.dica-imagem {
  flex: 0 0 300px;
}

.dica-imagem.large {
  flex: 0 0 350px;
}

.img-circular {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(139, 157, 124, 0.3);
  border: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.img-circular-large {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(139, 157, 124, 0.3);
  border: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

/* Conteúdo */
.dica-conteudo {
  flex: 1;
}

.dica-conteudo h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.dica-categoria {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.dica-descricao {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Estilos para os links */
.dica-link {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.dica-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

.text-center {
  text-align: center;
}

/* ============================================ */
/* ESTILOS ESPECIAIS PARA SEÇÃO DE AEROPORTOS */
/* ============================================ */

/* Lista de distâncias */
.dica-lista {
  margin: 20px 0;
  width: 100%;
}

.dica-lista-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(139, 157, 124, 0.2);
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.dica-lista-item:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(139, 157, 124, 0.05), transparent);
}

.dica-lista-local {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
  position: relative;
  padding-left: 15px;
}

.dica-lista-local::before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.dica-lista-distancia {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(139, 157, 124, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Separador sutil */
.dica-separador {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.dica-separador::before,
.dica-separador::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 40px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.dica-separador::before {
  left: 0;
}

.dica-separador::after {
  right: 0;
}

.dica-separador-flor {
  font-family: "Great Vibes", cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  display: inline-block;
  background: white;
  padding: 0 15px;
}

/* Título secundário */
.h3-secundario {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 15px 0 10px;
  position: relative;
  display: inline-block;
}

/* Dica extra */
.dica-extra {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 25px;
  padding: 12px 18px;
  background: rgba(139, 157, 124, 0.05);
  border-radius: 50px;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139, 157, 124, 0.1);
  width: auto;
}

.dica-extra-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .dica-lista-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 12px 0;
  }

  .dica-lista-local {
    padding-left: 0;
  }

  .dica-lista-local::before {
    display: none;
  }

  .dica-lista-distancia {
    align-self: center;
  }

  .dica-extra {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .dica-separador::before,
  .dica-separador::after {
    width: calc(50% - 30px);
  }
}

@media (max-width: 480px) {
  .dica-lista-distancia {
    font-size: 0.9rem;
    padding: 3px 10px;
  }

  .dica-extra {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .dica-separador-flor {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}

/* ============================================ */
/* EFEITO SCROLL REVEAL */
/* ============================================ */

/* Estado inicial (escondido) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.left {
  transform: translateX(-50px);
}

.scroll-reveal.right {
  transform: translateX(50px);
}

.scroll-reveal.fade-up {
  transform: translateY(50px);
}

/* Estado visível */
.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Responsividade - Tablet e Mobile */
@media (max-width: 968px) {
  .dica-card {
    gap: 0px;
  }

  .dica-imagem {
    flex: 0 0 250px;
  }

  .img-circular {
    width: 250px;
    height: 250px;
  }
}

/* ============================================ */
/* RESPONSIVIDADE CORRIGIDA - ORDEM: TÍTULO, FOTO, INFO */
/* ============================================ */
@media (max-width: 768px) {
  .dicas-section {
    padding: 60px 20px;
  }

  /* Mobile: ordem sempre Imagem -> Título -> Categoria -> Descrição */
  .dica-card {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 70px;
    text-align: center;
  }

  /* Imagem sempre primeiro - espaço menor para ficar próximo do conteúdo */
  .dica-card .dica-imagem {
    order: 1;
    margin: 0 auto 15px;
    width: 220px;
    height: 220px;
  }

  .img-circular {
    width: 220px;
    height: 220px;
  }

  /* Conteúdo (título + categoria + descrição) vem depois */
  .dica-card .dica-conteudo {
    order: 2;
    width: 100%;
  }

  /* Título */
  .dica-conteudo h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Categoria e descrição */
  .dica-categoria,
  .dica-descricao {
    text-align: center;
  }

  .dica-categoria {
    margin-bottom: 15px;
    font-weight: 600;
  }

  .dica-descricao {
    margin-bottom: 0;
  }

  /* Para o card de destaque (ponto turístico) */
  .dica-card.destaque {
    display: block;
  }

  .dica-card.destaque .dica-imagem.large {
    margin: 0 auto 30px;
    width: 280px;
    height: 280px;
  }

  .img-circular-large {
    width: 280px;
    height: 280px;
  }

  /* Ajuste dos efeitos no mobile */
  .scroll-reveal {
    transition-duration: 0.55s;
    transition-timing-function: ease-out;
  }

  .scroll-reveal.left,
  .scroll-reveal.right,
  .scroll-reveal.fade-up {
    transform: translateY(18px);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.5rem;
  }

  .dica-conteudo h3 {
    font-size: 1.6rem;
  }

  .dica-imagem {
    width: 200px;
    height: 200px;
  }

  .img-circular {
    width: 200px;
    height: 200px;
  }

  .dica-card.destaque .dica-imagem.large {
    width: 240px;
    height: 240px;
  }

  .img-circular-large {
    width: 240px;
    height: 240px;
  }

  .dica-descricao {
    font-size: 0.95rem;
  }
}

/* Minimal Pages Style */
.minimal-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 120px 20px 80px;
  padding-top: 30vh;
}

.minimal-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

/* Animação para o conteúdo aparecer suavemente */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Atrasos na animação para cada elemento aparecer sequencialmente */
.minimal-title {
  font-size: 3.5rem;
  margin: 10px 0 30px;
  color: inherit;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.minimal-icon {
  margin: 20px auto 40px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.minimal-icon img {
  width: 260px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.minimal-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 40px auto;
  max-width: 500px;
  text-align: justify;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.location-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.location-address {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
  margin: 0px auto;
  max-width: 500px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.minimal-map-icon {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.map-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.map-link {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: var(--primary-color);
}

.minimal-note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 50px;
  font-style: italic;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .map-image {
    width: 100px;
    height: 100px;
  }

  .minimal-title {
    font-size: 2.5rem;
  }

  .minimal-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
  }

  .minimal-text {
    font-size: 0.9rem;
  }

  .minimal-page {
    padding-top: 25vh;
  }
}

@media (max-width: 480px) {
  .map-image {
    width: 90px;
    height: 90px;
  }

  .minimal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .minimal-page {
    padding-top: 20vh;
  }
}

/* Traje Page Specific Styles */
.traje-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  margin: -30px 0 40px;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* ============================================
              TRAJE - ESTILOS EXCLUSIVOS
              NÃO AFETA OUTRAS PÁGINAS
              ============================================ */

/* Container principal das imagens - AGORA PARA AMBOS OS TRAJES */
.traje-images-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-top: 120px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* Cada seção de imagem - AGORA COM FLEX COLUMN */
.traje-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  animation: none;
  opacity: 1;
}

/* Ícone dentro da seção */
.traje-icon-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 30px;
}

/* As imagens em si */
.traje-icon-img-wedding {
  width: 280px;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  vertical-align: middle;
}

/* Texto embaixo das imagens */
.traje-text {
  text-align: center;
  width: 100%;
}

.traje-section-title {
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-style: italic;
}

.traje-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Nota minimal */
.minimal-note {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
  font-style: italic;
}

/* ============================================
              RESPONSIVIDADE
              ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .traje-images-container {
    gap: 50px;
    margin-top: 100px;
  }

  .traje-icon-img-wedding {
    width: 240px;
  }

  .traje-section-title {
    font-size: 1.6rem;
  }
}

/* Mobile grande */
@media (max-width: 768px) {
  .traje-images-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 40px;
    width: 100%;
  }

  .traje-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .traje-icon-inline {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .traje-icon-img-wedding {
    width: 220px;
    margin: 0 auto;
  }

  .traje-section-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .traje-text {
    text-align: center;
    width: 100%;
  }
}

/* Mobile médio */
@media (max-width: 576px) {
  .traje-images-container {
    gap: 35px;
    margin-top: 60px;
  }

  .traje-icon-img-wedding {
    width: 200px;
  }

  .traje-section-title {
    font-size: 1.5rem;
  }
}

/* Mobile pequeno - empilha as imagens */
@media (max-width: 480px) {
  .traje-images-container {
    gap: 30px;
    margin-top: 50px;
  }

  .traje-icon-img-wedding {
    width: 180px;
  }

  .traje-section-title {
    font-size: 1.4rem;
  }
}

/* Telas muito pequenas */
@media (max-width: 375px) {
  .traje-images-container {
    margin-top: 40px;
    gap: 25px;
  }

  .traje-icon-img-wedding {
    width: 160px;
  }

  .traje-section-title {
    font-size: 1.3rem;
  }
}

/* ============================================
              SOMENTE ESTRUTURA PARA JUNTAR OS DOIS TRAJES
              ============================================ */

/* Container que agrupa os dois trajes */
.traje-unificado-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* Cada bloco mantém exatamente os mesmos estilos */
.traje-bloco {
  width: 100%;
}

/* Separador sutil */
.traje-separador {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 20px;
  position: relative;
}

.traje-separador::before,
.traje-separador::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.traje-separador span {
  padding: 0 25px;
  color: var(--primary-color);
  font-family: "Great Vibes", cursive;
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Ajustes específicos para mobile do separador */
@media (max-width: 768px) {
  .traje-separador {
    margin: 20px 0 10px;
  }

  .traje-separador span {
    font-size: 1.3rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .traje-separador span {
    font-size: 1.1rem;
    padding: 0 15px;
  }
}

/* ============================================ */
/* SEÇÃO DE PADRINHOS */
/* ============================================ */

.padrinhos-section {
  padding: 80px 0 100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(248, 244, 238, 0.3) 100%
  );
  isolation: isolate;
}

.padrinhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  justify-items: center;
  padding: 0 20px;
}

.padrinho-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
  transition:
    transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
  max-width: 320px;
  width: 100%;
  will-change: transform;
}

.padrinho-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px var(--shadow-hover);
}

.padrinho-photo {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: var(--primary-color);
  contain: layout style paint;
}

.padrinho-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
  display: block;
  will-change: transform;
  backface-visibility: hidden;
}

.padrinho-card:hover .padrinho-photo img {
  transform: scale(1.05);
}

.padrinho-info {
  padding: 25px 20px;
  text-align: center;
  background: var(--white);
}

.padrinho-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.padrinho-role {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

/* Responsivo para Padrinhos - Desktop Grande (1200px+) */
@media (min-width: 1200px) {
  .padrinhos-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Responsivo para Padrinhos - Desktop Médio (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .padrinhos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .padrinho-card {
    max-width: 300px;
  }

  .padrinho-photo {
    height: 330px;
  }
}

/* Responsivo para Padrinhos - Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .padrinhos-section {
    padding: 70px 0 90px;
  }

  .padrinhos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 30px;
  }

  .padrinho-card {
    max-width: 100%;
  }

  .padrinho-photo {
    height: 320px;
  }

  .padrinho-info h3 {
    font-size: 1.5rem;
  }

  .padrinho-role {
    font-size: 0.9rem;
  }
}

/* Responsivo para Padrinhos - Tablet Pequeno (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
  .padrinhos-section {
    padding: 60px 0 80px;
  }

  .padrinhos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding: 0 20px;
  }

  .padrinho-card {
    max-width: 100%;
  }

  .padrinho-photo {
    height: 280px;
  }

  .padrinho-info {
    padding: 20px 15px;
  }

  .padrinho-info h3 {
    font-size: 1.4rem;
  }

  .padrinho-role {
    font-size: 0.85rem;
  }
}

/* Responsivo para Padrinhos - Mobile Grande (480px - 599px) */
@media (max-width: 599px) and (min-width: 480px) {
  .padrinhos-section {
    padding: 50px 0 70px;
  }

  .padrinhos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
  }

  .padrinho-card {
    max-width: 100%;
    will-change: auto;
  }

  .padrinho-photo {
    height: 380px;
  }

  .padrinho-photo img {
    will-change: auto;
  }

  .padrinho-info {
    padding: 22px 18px;
  }

  .padrinho-info h3 {
    font-size: 1.5rem;
  }

  .padrinho-role {
    font-size: 0.9rem;
  }

  /* Remove hover em mobile */
  .padrinho-card:hover {
    transform: none;
  }
}

/* Responsivo para Padrinhos - Mobile Pequeno (até 479px) */
@media (max-width: 479px) {
  .padrinhos-section {
    padding: 40px 0 60px;
  }

  .padrinhos-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .padrinho-card {
    max-width: 100%;
    border-radius: var(--border-radius-md);
  }

  .padrinho-photo {
    height: 350px;
  }

  .padrinho-info {
    padding: 20px 15px;
  }

  .padrinho-info h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .padrinho-role {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
  }

  /* Remove hover e transições em mobile para melhor performance */
  .padrinho-card:hover {
    transform: none;
  }

  .padrinho-card,
  .padrinho-photo img {
    will-change: auto;
  }
}

/* Mobile Extra Pequeno (até 360px) */
@media (max-width: 360px) {
  .padrinhos-section {
    padding: 35px 0 50px;
  }

  .padrinhos-grid {
    gap: 20px;
    padding: 0 10px;
    margin-top: 25px;
  }

  .padrinho-card {
    border-radius: var(--border-radius-sm);
  }

  .padrinho-photo {
    height: 320px;
  }

  .padrinho-info {
    padding: 18px 12px;
  }

  .padrinho-info h3 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .padrinho-role {
    font-size: 0.8rem;
  }
}
.section-testemunho {
  background-color: var(--bg-light);
  min-height: 220px;
  width: 100%;
  -webkit-clip-path: polygon(
    0 0,
    44% 0,
    50% 8%,
    56% 0,
    100% 0,
    100% 100%,
    56% 100%,
    50% 92%,
    44% 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    44% 0,
    50% 8%,
    56% 0,
    100% 0,
    100% 100%,
    56% 100%,
    50% 92%,
    44% 100%,
    0 100%
  );
}

.section-testemunho-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 6vw, 92px);
}

.section-testemunho-texto {
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  color: var(--primary-color);
  text-shadow: none;
  font-style: italic;
  padding: 0;
}

.testemunho-bird {
  display: block;
  width: clamp(130px, 16vw, 220px);
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  opacity: 0.9;
  user-select: none;
  pointer-events: none;
}

/* Navegação rápida — DICAS (ícones: substitua .tips-quick-nav-icon-slot por <img> quando tiver os arquivos) */
#dicas-hospedagem,
#dicas-saloes,
#dicas-restaurantes,
#dicas-passeios,
#inicio,
#dicas,
#localizacao,
#dress-code,
#confirmacao-presenca {
  scroll-margin-top: 100px;
}

.tips-quick-nav {
  padding: clamp(40px, 6vw, 64px) 0 clamp(36px, 5vw, 52px);
  background: var(--bg-light);
}

.tips-quick-nav-inner {
  max-width: 980px;
  margin: 0 auto;
}

.tips-quick-nav-title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #000;
}

.tips-quick-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.8vw, 36px);
  align-items: start;
}

.tips-quick-nav-item {
  margin: 0;
}

.tips-quick-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.tips-quick-nav-link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 6px;
  border-radius: 2px;
}

.tips-quick-nav-icon-slot {
  display: block;
  width: min(100%, clamp(72px, 11vw, 112px));
  height: min(100%, clamp(72px, 11vw, 112px));
  flex-shrink: 0;
  border: 1px dashed rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.tips-quick-nav-icon {
  display: block;
  width: min(100%, clamp(72px, 11vw, 112px));
  height: min(100%, clamp(72px, 11vw, 112px));
  flex-shrink: 1;
  object-fit: contain;
  filter: grayscale(1);
}

.tips-quick-nav-btn {
  display: inline-block;
  width: auto;
  min-height: 0;
  padding: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.58rem, 1vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000;
  background: transparent;
  box-shadow: none;
  border: 0;
  transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.tips-quick-nav-link:hover .tips-quick-nav-btn {
  color: #444;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .tips-quick-nav-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 14px) clamp(4px, 1.5vw, 10px);
  }

  .tips-quick-nav-icon,
  .tips-quick-nav-icon-slot {
    width: min(100%, clamp(46px, 19vw, 88px));
    height: min(100%, clamp(46px, 19vw, 88px));
  }

  .tips-quick-nav-btn {
    max-width: none;
    font-size: clamp(0.45rem, 2.1vw, 0.62rem);
    letter-spacing: 0.06em;
    line-height: 1.15;
  }

  #dicas-hospedagem,
  #dicas-saloes,
  #dicas-restaurantes,
  #dicas-passeios {
    scroll-margin-top: 88px;
  }

  .section-testemunho {
    min-height: auto;
    -webkit-clip-path: polygon(
      0 0,
      44% 0,
      50% 5%,
      56% 0,
      100% 0,
      100% 100%,
      56% 100%,
      50% 95%,
      44% 100%,
      0 100%
    );
    clip-path: polygon(
      0 0,
      44% 0,
      50% 5%,
      56% 0,
      100% 0,
      100% 100%,
      56% 100%,
      50% 95%,
      44% 100%,
      0 100%
    );
  }

  .section-testemunho-content {
    gap: 18px;
  }

  .section-testemunho-texto {
    max-width: 520px;
    padding: 0 6px;
  }

  .testemunho-bird {
    width: clamp(80px, 17vw, 130px);
  }
}

@media (max-width: 560px) {
  .section-testemunho-content {
    flex-direction: column;
    gap: 14px;
  }

  .section-testemunho-texto {
    order: 2;
    max-width: 100%;
  }

  .testemunho-bird-left {
    order: 1;
    align-self: flex-start;
  }

  .testemunho-bird-right {
    order: 3;
    align-self: flex-end;
  }
}

/* Seção de memórias com slider */
.memories-slider-section {
  margin-top: 16px;
  padding: 0;
}

.memories-header {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.memories-floral-top {
  width: min(250px, 90%);
  height: auto;
  display: block;
}

.memories-carousel {
  position: relative;
  width: 100%;
  padding: 0;
}

.memories-composed-layout {
  max-width: 980px;
  margin: 0 auto;
}

.memories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.memories-bottom-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  align-items: stretch;
}

.memories-side-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.memory-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.memory-photo-1,
.memory-photo-2,
.memory-photo-3 {
  background-image: url("../images/noivos/img1.jpeg");
}

.memory-photo-1 {
  background-position: left center;
}

.memory-photo-2 {
  background-position: center center;
}

.memory-photo-3 {
  background-position: right center;
}

.memory-photo-4,
.memory-photo-5,
.memory-photo-6 {
  background-image: url("../images/noivos/img2.jpeg");
}

.memory-photo-4 {
  background-position: left center;
}

.memory-photo-5 {
  background-position: center center;
}

.memory-photo-6 {
  background-position: right center;
}

.memory-photo-7 {
  background-image: url("../images/noivos/img3.jpeg");
  background-position: center center;
  min-height: 100%;
}

.memory-photo-8,
.memory-photo-9 {
  background-image: url("../images/noivos/img-exemplo.png");
  background-position: center center;
}

.memory-photo-8,
.memory-photo-9 {
  display: none;
}

.memories-indicators {
  display: none;
}

.memories-indicators .active {
  background-color: #333333;
}

.memories-control {
  display: none;
}

.memories-control .carousel-control-prev-icon,
.memories-control .carousel-control-next-icon {
  display: none;
}

.memories-mural-panel {
  min-height: 100%;
  padding: 28px 24px;
}

.messages-mural-header {
  text-align: center;
  margin-bottom: 22px;
}

.messages-mural-header .section-title {
  color: #111111;
  margin-bottom: 10px;
}

.messages-mural-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.memories-mural-panel .wall-button {
  margin-top: 24px;
}

@media (max-width: 992px) {
  .memories-carousel {
    padding: 0;
  }

  .memories-grid {
    gap: 0;
  }

  .memories-bottom-row {
    grid-template-columns: 0.65fr 2.35fr;
    gap: 0;
  }

  .memory-photo-7 {
    min-height: 180px;
  }

  .memories-mural-panel {
    padding: 16px 10px;
  }
}

@media (max-width: 768px) {
  .memories-slider-section {
    margin-top: 8px;
  }

  .memories-carousel {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .memories-carousel {
    padding: 0;
  }

  .memories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .memory-photo {
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }

  .memories-control {
    width: 24px;
  }

  .memories-control .carousel-control-prev-icon,
  .memories-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }

  .memories-bottom-row {
    grid-template-columns: 0.6fr 2.4fr;
  }

  .memory-photo-7,
  .memory-photo-8,
  .memory-photo-9 {
    min-height: 115px;
    max-height: 150px;
    aspect-ratio: 3 / 4;
  }

  .memory-photo-8,
  .memory-photo-9 {
    display: block;
  }

  .memories-mural-panel {
    padding: 14px 8px;
  }

  .messages-mural-header .section-title {
    font-size: 1.4rem;
  }

  .messages-mural-header .section-subtitle {
    font-size: 0.85rem;
  }

  .message-form-container textarea,
  .message-form-container input {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .message-form-container textarea {
    min-height: 60px;
  }
}

/* História do casal (texto + foto) */
.couple-story-section {
  padding: 32px 20px 28px;
}

.couple-story-principal {
  width: 100%;
  max-width: min(100vw - 40px, 560px);
  margin: 0 auto clamp(32px, 5vw, 48px);
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.couple-story-principal img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.couple-story-header {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5.5vw, 56px);
  text-align: center;
}

.couple-story-title {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--primary-color);
}

.couple-story-lead {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.86rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: uppercase;
  opacity: 0.78;
}

.couple-story-flow {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vw, 40px);
}

.couple-story-text-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.couple-story-text-card h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: 0.75;
}

.couple-story-text-card p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  max-width: 38ch;
}

.couple-story-text-card p + p {
  margin-top: 0.9em;
}

.couple-story-flow > .couple-story-text-card {
  width: 100%;
  max-width: 40rem;
}

.couple-story-photo-card {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.couple-story-photo-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.couple-story-flow > .couple-story-photo-card {
  width: 100%;
  max-width: min(100%, 420px);
  margin: 0;
}

/* Mural 3×3 — separador visual, células coladas */
.couple-story-mural {
  width: 100%;
  max-width: min(100vw - 40px, 720px);
  margin: clamp(4px, 1vw, 10px) 0;
}

.couple-story-mural-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(7, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border: 0;
  overflow: hidden;
}

.couple-story-mural-cell {
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.couple-story-mural-cell img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Mural de recados separado */
.messages-wall-only-section {
  padding: 24px 20px 86px;
}

.mural-only-panel {
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.mural-only-panel.messages-right-area {
  border: 0;
  background: transparent;
  padding: 0 0 20px;
  overflow: visible;
}

.mural-only-panel .message-form-container {
  padding: 0 10px;
}

.mural-only-panel .messages-mural-header .section-title {
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--primary-color);
  letter-spacing: 0.22em;
}

@media (max-width: 992px) {
  .couple-story-flow {
    gap: 22px;
  }

  .couple-story-mural {
    max-width: 100%;
  }

  .messages-wall-only-section {
    padding: 22px 15px 72px;
  }
}

@media (max-width: 768px) {
  .couple-story-section {
    padding: 16px 15px 18px;
  }

  .couple-story-header {
    margin-bottom: clamp(28px, 6vw, 40px);
  }

  .couple-story-text-card h3 {
    font-size: 0.75rem;
  }

  .couple-story-photo-card img {
    aspect-ratio: 5 / 6;
  }

  .messages-wall-only-section {
    padding: 20px 15px 62px;
  }

  .mural-only-panel.messages-right-area {
    padding: 0 0 26px;
  }

  .mural-only-panel.messages-right-area::after {
    display: none;
  }
}

/* ============================================
   Botão de música (apenas home / index)
   ============================================ */
.home-page .music-toggle-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
}

.home-page .music-toggle-btn {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-page .music-toggle-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0.45;
  animation: music-toggle-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.home-page .music-toggle-wrap.is-playing .music-toggle-pulse {
  animation: none;
  opacity: 0;
}

@keyframes music-toggle-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.28);
    opacity: 0;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

.home-page .music-toggle-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.home-page .music-toggle-btn.is-playing {
  background: #ffffff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.home-page .music-toggle-btn .music-svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

.home-page .music-toggle-btn .music-svg-pause {
  display: none;
}

.home-page .music-toggle-btn.is-playing .music-svg-play {
  display: none;
}

.home-page .music-toggle-btn.is-playing .music-svg-pause {
  display: block;
}

@media (max-width: 768px) {
  .home-page .music-toggle-wrap {
    bottom: 20px;
    right: 16px;
  }

  .home-page .music-toggle-btn {
    width: 50px;
    height: 50px;
  }

  .home-page .music-toggle-btn .music-svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .music-toggle-pulse {
    animation: none;
    opacity: 0.25;
  }
}
