/* 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: rgb(106, 119, 88);
  --secondary-color: rgb(166, 208, 174);
  --accent-color: #e8e3d8;
  --text-dark: #3d4a35;
  --text-light: #6b8e60;
  --bg-light: #ffffff;
  --white: #ffffff;
  --shadow: rgba(107, 142, 96, 0.12);
  --shadow-hover: rgba(107, 142, 96, 0.2);
  --watercolor-green: #8fad85;
  --watercolor-beige: #e8e3d8;
  --watercolor-sage: #a8bda0;
  --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 */
.navbar {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  font-weight: 300;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}


.nav-logo {
  width: 90px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

/* Layout: logo centro, links esquerda e direita */
.navbar .container {
  position: relative;
}

.navbar-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.navbar-nav-wrapper .navbar-brand {
  flex-shrink: 0;
}

.navbar-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--text-dark) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300 !important;
  padding: 8px 10px !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);
}

/* 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.menu-open {
    background-color: #ffffff;
  }

  .navbar-nav-wrapper {
    gap: 0;
  }

  .navbar-nav-links {
    gap: 0;
  }

  .navbar-collapse {
    background-color: #ffffff;
    padding: 0px;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(139, 157, 124, 0.2);
    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: rgb(108, 125, 145);
  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: 50vh;
  align-content: center;
  margin: 0 auto;
  /* Centraliza */
  background-color: transparent;
  border-radius: 15px;
  overflow: visible;
}

.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;
  border-radius: 8px;
  width: 75px;
  height: 75px;
  padding: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

/* 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.8;
}

.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: var(--primary-color);
  line-height: 1;
  transform: translateY(-2px);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-label {
  font-size: 10px;
  border-radius: 8px;
  letter-spacing: 1px;
  color: var(--primary-color);
  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: #c496a0;
}

.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;
  }
}

/* Music Player Button - Versão Profissional */
.music-player-container {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
}

.music-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.music-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--primary-color);
}

.music-btn:active {
  transform: translateY(-1px);
}

.music-btn i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Efeito de onda sonora quando está tocando */
.music-btn.playing {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(139, 157, 124, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(139, 157, 124, 0.6);
  }

  100% {
    box-shadow: 0 4px 15px rgba(139, 157, 124, 0.3);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .music-btn {
    width: 45px;
    height: 45px;
  }

  .music-btn i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .music-btn {
    width: 40px;
    height: 40px;
  }

  .music-btn i {
    font-size: 1.2rem;
  }
}

/* Event Info Section */
.event-info {
  width: 100%;
  padding: 40px 0;
  background-color: var(--primary-color);
  background-image:
    repeating-linear-gradient(90deg,
      rgba(124, 138, 104, 0.96) 0px,
      rgba(124, 138, 104, 0.96) 2px,
      rgba(106, 119, 88, 0.96) 2px,
      rgba(106, 119, 88, 0.96) 7px,
      rgba(84, 96, 68, 0.96) 7px,
      rgba(84, 96, 68, 0.96) 9px,
      rgba(106, 119, 88, 0.96) 9px,
      rgba(106, 119, 88, 0.96) 14px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      rgba(0, 0, 0, 0.05) 1px,
      rgba(0, 0, 0, 0.05) 2px,
      transparent 2px,
      transparent 7px);
}

.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;
}

/* Music Player */
.music-player-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0 30px;
}

.music-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.music-btn:hover {
  transform: scale(1.1);
}

/* Event Info Section */
.event-info {
  width: 100%;
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 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: #ffffff;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  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: 23px;
  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: #73839d;
}

.ceremony-icon-image {
  width: clamp(110px, 13vw, 170px);
  height: auto;
  display: block;
  object-fit: contain;
}

.ceremony-maps-btn {
  margin-top: 20px;
  margin-bottom: 12px;
  text-decoration: none;
}

.ceremony-maps-text {
  margin-bottom: 0 !important;
}

/* ===== BANNER CÓDIGO DE VESTIMENTA ===== */
.banner-trajes {
  margin-top: 20px;
}

.trajes-card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border: 2px solid #2c2c2c;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 28px 24px 24px;
  position: relative;
  text-align: center;
}

.trajes-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid #2c2c2c;
  pointer-events: none;
}

.trajes-header {
  margin-bottom: 24px;
}

.trajes-logo {
  width: clamp(80px, 12vw, 120px);
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.trajes-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.trajes-title-cursive {
  font-family: "Italianno", "Great Vibes", cursive;
  font-size: 1.6rem;
  color: #2c2c2c;
}

.trajes-title-bold {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 3px;
  color: #1a1a1a;
}

.trajes-title-formal {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 4px;
  color: #2c2c2c;
}

.trajes-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.trajes-col {
  text-align: center;
}

.trajes-col-title {
  font-family: "Italianno", "Great Vibes", cursive;
  font-size: 2rem;
  color: #2c2c2c;
  margin: 0 0 12px;
}

/* Título cursivo unificado - mesmo estilo em todo o site */
.site-title-cursive {
  font-family: "Italianno", "Great Vibes", cursive !important;
  font-size: 65px !important;
  color: var(--primary-color) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
}

.trajes-col-illustration {
  width: clamp(90px, 14vw, 140px);
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.trajes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trajes-list li {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 1px;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.4;
}

.trajes-list li:last-child {
  margin-bottom: 0;
}

.trajes-footer {
  border-top: 1px solid #2c2c2c;
  padding-top: 20px;
}

.trajes-footer-separator {
  width: 40px;
  height: 2px;
  background: #2c2c2c;
  margin: 0 auto 16px;
}

.trajes-footer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.5;
}

.trajes-footer-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #444;
  margin: 0 0 16px;
  font-style: italic;
}

.trajes-color-swatches {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trajes-colors-image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
}

.trajes-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #2c2c2c;
  background: #b8a99a;
  font-size: 0;
  display: inline-block;
}

.trajes-swatch:nth-child(1) {
  background: #6b7c5a;
}

/* Olive */
.trajes-swatch:nth-child(2) {
  background: #9a8f85;
}

/* Stone */
.trajes-swatch:nth-child(3) {
  background: #d4c4b0;
}

/* Nude */
.trajes-swatch:nth-child(4) {
  background: #b8a0a8;
}

/* Mauve */
.trajes-swatch:nth-child(5) {
  background: #9ca88a;
}

/* Sage */
.trajes-swatch-white {
  background: #f8f8f8 !important;
  border-color: #999;
}

@media (max-width: 576px) {
  .trajes-columns {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trajes-col-illustration {
    width: clamp(70px, 18vw, 90px);
  }

  .trajes-col-title {
    font-size: 1.6rem;
  }

  .trajes-list li {
    font-size: 0.65rem;
  }

  .trajes-card {
    padding: 20px 18px;
  }

  .trajes-footer-note {
    font-size: 0.85rem;
  }

  .trajes-colors-image {
    width: min(100%, 250px);
  }
}

/* ===== 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: #ffffff;
  border: 0.8px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  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: #d4d5d8;
  border: 1px solid transparent;
  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;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.action-btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  width: 100%;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 40px;
  background: var(--secondary-color);
  color: var(--white);
  transition: none;
}

.action-btn-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
}

.action-btn-primary,
.action-btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.action-btn:hover .action-btn-text,
.action-btn:active .action-btn-text {
  font-weight: 300;
}

.btn-confimacao {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  border-radius: 40px;
  padding: 0.85rem 0.95rem;
  max-width: 200px;
  width: 100%;
}

/* ===== 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: 350px;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .action-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .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) {
  .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: 0.95rem;
    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: 100%;
    padding: 0 1.5rem;
    gap: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .action-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }

  .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: 0.95rem;
    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: 0.95rem;
    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;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  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 - estilo inspirado na referência visual */
.our-story {
  padding: 95px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  background-image: url("../images/principal/copo-de-leite.png");
  background-size: cover;
  background-position: center;
}

.our-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(106, 119, 88, 0.55);
  z-index: 0;
  pointer-events: none;
}

.our-story .container {
  position: relative;
  z-index: 1;
}

.story-background-card {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 28px;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
}

.story-background-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.story-green-overlay {
  position: absolute;
  z-index: 2;
  inset: 11% 8%;
  background: rgba(106, 119, 88, 0.76);
  border: 1px solid rgba(238, 232, 220, 0.28);
}

.story-centered-text {
  position: relative;
  z-index: 3;
  width: min(760px, 86%);
  text-align: center;
  padding: 10px 6px;
}

.story-centered-text .section-title {
  margin-bottom: 16px;
  color: #ffffff !important;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.8rem, 2.5vw + 1.8rem, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.story-centered-text p {
  margin: 0 0 12px;
  color: rgba(246, 243, 233, 0.96);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 400;
  text-align: center;
  text-wrap: pretty;
}

.story-centered-text p:last-of-type {
  margin-bottom: 0;
}

.story-centered-text .signature {
  margin-top: 18px;
  color: #f6f1e7;
  font-family: "Italianno", "Great Vibes", cursive !important;
  font-size: clamp(1.8rem, 1.2vw + 1.3rem, 2.4rem);
  line-height: 1;
  opacity: 0.95;
}

/* Responsivo Our Story */
@media (max-width: 992px) {
  .our-story {
    padding: 80px 0;
  }

  .our-story {
    background-position: 40% center;
  }

  .story-background-card {
    min-height: 540px;
    padding: 44px 20px;
  }

  .story-green-overlay {
    inset: 10% 6%;
  }
}

@media (max-width: 768px) {
  .our-story {
    padding: 64px 0;
    background-position: 40% center;
    background-size: cover;
  }

  .story-background-card {
    min-height: 500px;
    padding: 34px 12px;
  }

  .story-green-overlay {
    inset: 7% 4%;
  }

  .story-centered-text {
    width: 92%;
  }

  .story-centered-text p {
    font-size: 0.96rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .story-background-card {
    min-height: 470px;
  }

  .story-green-overlay {
    inset: 5% 3%;
  }

  .story-centered-text p {
    font-size: 0.9rem;
  }
}

/* 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;
}

/* Gift List CTA Section */
.gift-list-cta {
  padding: 80px 0 30px;
}

.gift-list-cta-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 50px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.gift-list-cta-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--primary-color);
  pointer-events: none;
}

.gift-list-cta-card .section-title {
  margin-bottom: 14px;
  color: var(--primary-color);
}

.gift-list-cta-card .section-subtitle {
  max-width: 560px;
  margin: 0 auto 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5f5f5f;
}

.gift-list-cta .btn-primary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: none;
  transition: none;
  padding: 13px 36px;
  font-size: 1rem;
}

.gift-list-cta .btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: none;
  transform: none;
}

/* 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;
}

.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: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 400;
  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-color: var(--primary-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  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(--secondary-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: 40px;
  padding: 14px 40px;
  border: 2px solid white;
  background: transparent;
  color: white;
  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: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* FORM */
.message-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.message-form-container textarea,
.message-form-container input {
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
  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 3px rgba(255, 255, 255, 0.3);
  background: white;
}

.message-form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.message-char-counter {
  width: 100%;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: -8px;
}

/* Feedback visual durante o arrasto */
.messages-carousel.swiping {
  transition: none !important;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
  .gift-list-cta {
    padding: 70px 0 20px;
  }

  .gift-list-cta-card {
    padding: 45px 28px;
  }

  .messages-wall {
    padding: 100px 0;
  }

  .messages-layout {
    gap: 50px;
  }

  .messages-left .section-title {
    font-size: 2rem;
  }

  .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) {
  .gift-list-cta {
    padding: 60px 0 15px;
  }

  .gift-list-cta-card {
    padding: 38px 24px;
  }

  .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) {
  .gift-list-cta {
    padding: 50px 0 10px;
  }

  .gift-list-cta-card {
    padding: 32px 20px;
  }

  .gift-list-cta-card .section-title {
    font-size: 2.2rem;
  }

  .gift-list-cta-card .section-subtitle {
    margin-bottom: 22px;
    font-size: 0.95rem;
  }

  .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%;
    border-radius: 16px;
    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);
    border-radius: 10px;
    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) {
  .gift-list-cta-card .section-title.site-title-cursive {
    font-size: 2.5rem !important;
  }

  .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;
}

/* ===== MÚSICAS TEMA DO CASAL ===== */
.theme-songs-section {
  padding: 70px 0 80px;
  background: #f8f6f1;
}

.theme-songs-title {
  text-align: center;
  margin-bottom: 40px;
}

.theme-songs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.theme-song-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 36px 32px;
  background: #ffffff;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(106, 119, 88, 0.1);
}

.theme-song-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(106, 119, 88, 0.4);
  pointer-events: none;
}

.theme-song-card {
  position: relative;
}

.theme-song-cover {
  width: 100%;
  height: 220px;
  background: rgba(106, 119, 88, 0.08);
  border: 1px solid rgba(106, 119, 88, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-song-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-song-cover.no-image img {
  display: none;
}

.theme-song-equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 32px;
}

.theme-song-bar {
  width: 5px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 2px;
  opacity: 0.5;
}

.theme-song-card.playing .theme-song-bar {
  animation: equalizerBar 0.4s ease-in-out infinite alternate;
  opacity: 0.9;
}

.theme-song-card.playing .theme-song-bar:nth-child(1) {
  animation-delay: 0s;
}

.theme-song-card.playing .theme-song-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.theme-song-card.playing .theme-song-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.theme-song-card.playing .theme-song-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.theme-song-card.playing .theme-song-bar:nth-child(5) {
  animation-delay: 0.2s;
}

.theme-song-card.playing .theme-song-bar:nth-child(6) {
  animation-delay: 0.1s;
}

.theme-song-card.playing .theme-song-bar:nth-child(7) {
  animation-delay: 0s;
}

@keyframes equalizerBar {
  0% {
    height: 4px;
  }

  100% {
    height: 28px;
  }
}

.theme-song-btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.theme-song-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(90deg, transparent 0%, rgba(106, 119, 88, 0.08) 20%, rgba(106, 119, 88, 0.08) 80%, transparent 100%);
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  text-align: center;
}

.theme-song-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

@media (max-width: 576px) {
  .theme-songs-section {
    padding: 50px 0 60px;
  }

  .theme-songs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-song-card {
    padding: 24px 20px;
  }

  .theme-song-cover {
    height: 220px;
  }

  .theme-song-cover img {
    object-fit: contain;
  }

  .theme-song-strip {
    padding: 12px 16px;
  }

  .theme-song-name {
    font-size: 1rem;
  }
}

/* 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;
  top: 25px;
  /* Mantém o deslocamento do background-position original */
  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;
  pointer-events: none;
  /* Permite clicar através da imagem */
}

.page-hero .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.wedding-info-section {
  padding-top: 0;
  margin-top: 0;
}

.page-hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: "Great Vibes", cursive;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.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) {
  .page-hero {
    min-height: 100vh;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }

  .hero-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    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) {
  .page-hero {
    min-height: 50vh;
    height: 70vh;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }

  .hero-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    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);
}

/* RSVP Form */
.rsvp-section {
  padding: 90px 20px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsvp-card {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 54px 48px;
  border-radius: 0;
  box-shadow: none;
}

.rsvp-card h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
}

.rsvp-card h2.site-title-cursive {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem) !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap;
}

.form-intro {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
}

.form-intro-icon {
  text-align: center;
  margin-bottom: 24px;
}

.form-intro-icon img {
  width: 100px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
}

.rsvp-section .form-group {
  margin-bottom: 25px;
}

.rsvp-section .form-group label {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", serif;
  text-transform: none;
}

.rsvp-section .form-group input[type="text"],
.rsvp-section .form-group input[type="tel"],
.rsvp-section .form-group input[type="email"],
.rsvp-section .form-group select {
  width: 100%;
  padding: 9px 2px 11px;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  transition: border-color 0.2s ease;
  background-color: transparent;
  color: var(--primary-color);
}

.rsvp-section .form-group input::placeholder {
  color: var(--primary-color);
  opacity: 1;
  font-style: normal;
}

#guestPhone {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.4px;
}

.rsvp-section .form-group input:focus,
.rsvp-section .form-group select:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
  box-shadow: none;
}

/* Estilo para os campos de acompanhante */
#acompanhantes-container {
  margin-bottom: 15px;
}

.acompanhante-item {
  position: relative;
  animation: slideDown 0.3s ease;
}

.acompanhante-item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 2px;
  border-bottom: none;
}

/* Botão de adicionar acompanhante */
#btnAdicionarAcompanhante {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 400;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 0 20px;
  width: auto;
  display: inline-block;
  letter-spacing: 0.3px;
}

#btnAdicionarAcompanhante:hover {
  background-color: rgba(106, 119, 88, 0.12);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: none;
  box-shadow: none;
}

/* Animação para novos campos */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão principal */
.btn-large {
  padding: 12px 36px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 22px auto 0;
  width: auto;
  min-width: 220px;
  text-transform: none;
  border-radius: 50px;
  background: var(--primary-color);
  border: none;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  transition: background-color 0.2s ease;
  cursor: pointer;
  box-shadow: none;
}

.btn-large:hover {
  transform: none;
  box-shadow: none;
  background: #506f59;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 157, 124, 0.2);
}

/* Mensagem de sucesso */
.success-message {
  text-align: center;
  padding: 50px 30px;
  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: 600px;
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .rsvp-section {
    padding: 70px 12px;
  }

  .rsvp-card {
    max-width: 100%;
    padding: 34px 22px 36px;
  }

  .rsvp-card h2 {
    font-size: clamp(2.5rem, 9vw, 3.2rem);
  }

  .rsvp-section .form-group label {
    font-size: 0.95rem;
  }

  .rsvp-section .form-group input[type="text"],
  .rsvp-section .form-group input[type="tel"],
  .rsvp-section .form-group input[type="email"],
  .rsvp-section .form-group select {
    font-size: 0.93rem;
  }

  #btnAdicionarAcompanhante {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 576px) {
  .rsvp-card {
    padding: 30px 16px;
  }

  .rsvp-card h2 {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .rsvp-card h2.site-title-cursive {
    font-size: 2.25rem !important;
    letter-spacing: 0.02em !important;
  }

  .form-intro {
    font-size: 0.8rem;
    margin-bottom: 26px;
  }

  .form-intro-icon img {
    width: 75px;
  }

  .rsvp-section .form-group {
    margin-bottom: 20px;
  }

  .rsvp-section .form-group label {
    font-size: 0.9rem;
  }

  .rsvp-section .form-group input[type="text"],
  .rsvp-section .form-group input[type="tel"],
  .rsvp-section .form-group input[type="email"],
  .rsvp-section .form-group select {
    padding: 8px 2px 10px;
    font-size: 0.88rem;
  }

  .acompanhante-item:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  #btnAdicionarAcompanhante {
    padding: 8px 14px;
    font-size: 0.8rem;
    width: 100%;
  }

  .btn-large {
    min-width: 180px;
    padding: 10px 26px;
    font-size: 1.7rem;
  }

  .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: 25px 15px;
  }

  .rsvp-card h2 {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
  }

  .rsvp-card h2.site-title-cursive {
    font-size: 1.95rem !important;
    letter-spacing: 0.015em !important;
  }

  .form-intro {
    font-size: 0.76rem;
  }

  .form-intro-icon img {
    width: 65px;
  }

  .btn-large {
    min-width: 170px;
    padding: 10px 22px;
    font-size: 1.55rem;
  }
}

/* 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: #f5f1e8;
}

/* 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.left,
  .scroll-reveal.right,
  .scroll-reveal.fade-up {
    transform: translateY(30px);
  }
}

@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: white;
  min-height: 220px;
  width: 100%;
}

.section-testemunho-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 6vw, 92px);
}

.section-testemunho-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.testemunho-music-player {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 5;
}

.section-testemunho-texto {
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  color: #3f4954;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
  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;
}

@media (max-width: 768px) {

  .section-testemunho-content {
    gap: 18px;
  }

  .testemunho-music-player {
    top: -100px;
  }

  .section-testemunho-texto {
    max-width: 520px;
    padding: 0 6px;
    font-size: 10.5px;
    line-height: 1.55;
  }

  .testemunho-bird {
    width: clamp(80px, 17vw, 130px);
  }
}

@media (max-width: 560px) {
  .section-testemunho-content {
    flex-direction: column;
    gap: 14px;
  }

  .section-testemunho-center {
    order: 2;
    width: 100%;
  }

  .section-testemunho-texto {
    max-width: 100%;
    font-size: 10.5px;
    line-height: 1.55;
    padding: 0 10px;
  }

  .testemunho-bird-left {
    order: 1;
    align-self: flex-start;
  }

  .testemunho-bird-right {
    order: 3;
    align-self: flex-end;
  }
}