/* 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(140, 161, 186);
  --secondary-color: rgb(213, 218, 224);
  --accent-color: #f5f1e8;
  --text-dark: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-light: #fdfbf7;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.12);
  --watercolor-green: #a8b89d;
  --watercolor-beige: #e8dcc8;
  --watercolor-sage: #b8c5a8;
  --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: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Navigation Menu - Watercolor Style */
.navbar {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 20px 0;
  transition: all 0.2s ease; /* Já tem isso, está ótimo */
}

.navbar.scrolled {
  background-color: var(--secondary-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(139, 157, 124, 0.15);
  padding: 12px 0;
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.nav-logo {
  width: 90px;
  height: 90px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .navbar-brand {
  color: var(--text-dark) !important;
  text-shadow: none;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--text-dark) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300 !important;
  padding: 8px 16px !important;
  position: relative;
}

/* CORREÇÃO: Garantir que links ativos mantenham o peso 300 */
.nav-link.active {
  font-weight: 300 !important;
}

/* EFEITO DE LINHA SIMPLES - Tamanho do texto */
.nav-link::after {
  content: "";
  position: absolute;
  width: calc(100% - 32px);
  height: 2px;
  bottom: 4px;
  left: 16px;
  background-color: var(--text-dark);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
  text-shadow: none;
}

.navbar.scrolled .nav-link::after {
  background-color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark) !important;
}

/* ======================================== */
/* DROPDOWN - SETA REFORÇADA COM HOVER      */
/* ======================================== */

/* Remove qualquer pseudo-elemento que possa estar atrapalhando */
.nav-link.dropdown-toggle::before {
  display: none !important;
}

/* Força a seta a aparecer - estado inicial (para baixo) */
.nav-link.dropdown-toggle::after {
  display: inline-block !important;
  margin-left: 0.5rem !important;
  vertical-align: middle !important;
  content: "" !important;
  border-top: 0.4em solid var(--text-dark) !important;
  border-right: 0.4em solid transparent !important;
  border-bottom: 0 !important;
  border-left: 0.4em solid transparent !important;
  opacity: 1 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transition: transform 0.2s ease;
}

/* EFEITO HOVER - seta vira para cima ao passar o mouse */
.nav-link.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* DROPDOWN ABRIR NO HOVER */
.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0;
}

/* Quando o dropdown está aberto (hover) - seta para cima */
.dropdown:hover .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Remove o comportamento padrão de clique do Bootstrap */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 25px rgba(139, 157, 124, 0.2);
  border-radius: 0;
  padding: 10px 0;
  background-color: var(--secondary-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) {
  /* Ícone do menu hamburguer em text-dark no mobile */
  .navbar-toggler {
    border-color: var(--text-dark);
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    background-color: var(--text-dark);
  }

  /* Quando o menu abre, ícone X também fica text-dark */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    background-color: var(--text-dark);
  }

  /* Navbar fica verde quando o menu é aberto */
  .navbar.menu-open {
    background-color: var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 157, 124, 0.15);
  }
  .navbar-collapse {
    background-color: var(--secondary-color);
    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 {
    display: none !important;
  }

  /* Dropdown sempre aberto no mobile */
  .dropdown:hover .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu,
  .dropdown-menu.show {
    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;
  }

  /* Menu sempre aberto no mobile */
  .navbar {
    background-color: var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 157, 124, 0.15);
  }

  .navbar.fixed-top {
    position: sticky !important;
    top: 0;
    left: auto;
    right: auto;
    width: 100%;
    z-index: 1030;
  }

  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse,
  .navbar-collapse.collapse,
  .navbar-collapse.collapse:not(.show) {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }

  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 0px;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(139, 157, 124, 0.2);
    position: relative;
    z-index: 1000;
  }
}

/* Pequenos ajustes para telas muito pequenas */
@media (max-width: 576px) {
  .nav-logo {
    width: 70px;
    height: 70px;
  }
}

/* Hero Section - CORRIGIDA: imagem atrás do navbar */
/* Hero Section - CORRIGIDA */
.hero {
  background-color: transparent;
  background-image: url("../images/noivos/hero.jpeg");
  background-size: contain; /* Ajusta a imagem para não cortar */
  background-position: center top; /* Posiciona a imagem um pouco mais para baixo */
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 0;
  text-align: center;
  height: 100vh;
  position: relative;
  margin: 0;
  width: 100%;
}

/* Hero Section - CORRIGIDA: imagem atrás do navbar */
/* Hero Section - CORRIGIDA */
.hero {
  background-color: transparent;
  background-image: url("../images/principal/aquarela.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 0;
  text-align: center;
  height: 100vh;
  position: relative;
  margin: 0;
  width: 100%;
}

/* Container da imagem - OCULTO, usando background-image */
.hero-image {
  display: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

/* Ajuste para centralizar a imagem quadrada */
.hero-countdown {
  width: 100%;
  max-width: 1100px;
  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;
}

.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: 500px; /* Largura máxima do card */
  width: 90%; /* Largura responsiva */
  margin: 0 auto; /* Centraliza */
  background-color: transparent;
  border-radius: 15px;
  overflow: hidden;
}

.couple-image {
  margin-top: 0;
  width: 500px;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .countdown-card {
    width: 95%;
    max-width: 450px;
  }

  .image-square {
    display: flex;
    justify-content: center;
  }

  .couple-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .countdown-content {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .countdown-card {
    width: 98%;
    max-width: 400px;
  }

  .countdown-content {
    padding: 20px 10px;
  }

  .brand-image-top {
    max-width: 320px;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
}

/* Wedding Info antes do contador - NOVO DESIGN */
.wedding-info {
  margin-bottom: 2vh;
  text-align: center;
  padding: 1vh 0;
  display: block;
  width: 100%;
}

.wedding-date-info {
  display: flex;
  align-items: baseline;
  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(--text-dark);
  font-weight: 300;
  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.4);
  border-radius: 30px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Countdown Styles - NOVO DESIGN ELEGANTE */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 5vh;
  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 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  border-radius: 12px;
  width: 80px;
  height: 80px;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(140, 161, 186, 0.15);
  border: 1px solid rgba(140, 161, 186, 0.2);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.countdown-number-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.7;
}

.minus-sign {
  font-family: "Italianno", cursive;
  font-size: 30px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
  margin-right: 2px;
  transform: translateY(-2px);
}

.countdown-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  transform: translateY(-2px);
}

.countdown-label {
  font-size: 11px;
  background: transparent;
  border-radius: 20px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-top: 0.3vh;
  font-weight: 400;
  width: 80px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  border: 1px solid rgba(140, 161, 186, 0.3);
  backdrop-filter: blur(2px);
}

/* Quando for negativo, muda a cor */
.countdown-item.negative .countdown-number-wrapper {
  background: linear-gradient(135deg, #fdf5f7 0%, #f9e9ed 100%);
  border-color: rgba(196, 150, 160, 0.3);
}

.countdown-item.negative .countdown-number-wrapper::before {
  background: linear-gradient(90deg, #c496a0, #d9b1ba);
}

.countdown-item.negative .minus-sign,
.countdown-item.negative .countdown-number {
  color: #b88490;
}

.countdown-item.negative .countdown-label {
  border-color: rgba(196, 150, 160, 0.3);
  color: #b88490;
}

/* Responsividade - Hero ocupa tela toda, contador mantém ajustes */
@media (max-width: 992px) {
  .hero {
    height: 100vh;
    margin-top: 0;
  }

  .hero-image {
    height: 100%;
  }

  .hero-countdown {
    max-width: 900px;
  }

  .countdown-container {
    max-width: 500px;
    gap: 12px;
  }

  .countdown-number-wrapper {
    width: 80px;
    height: 80px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 32px;
  }

  .countdown-label {
    width: 80px;
    height: 26px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    margin-top: 0;
    justify-content: center;
    padding-top: 0;
    background-position: 35% center;
  }

  .hero-image {
    height: 100%;
  }

  .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: 12px;
    margin-bottom: 4vh;
  }

  .countdown-item {
    min-width: 70px;
  }

  .countdown-number-wrapper {
    width: 75px;
    height: 75px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    width: 75px;
    height: 24px;
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 100vh;
    margin-top: 0;
    justify-content: center;
    padding-top: 0;
  }

  .hero-image {
    height: 100%;
  }

  .hero-countdown {
    max-width: 550px;
  }

  .countdown-container {
    max-width: 480px;
    gap: 10px;
    margin-bottom: 3vh;
  }

  .countdown-item {
    min-width: 65px;
  }

  .countdown-number-wrapper {
    width: 70px;
    height: 70px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 26px;
  }

  .countdown-label {
    width: 70px;
    height: 22px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    margin-top: 0;
    justify-content: center;
    padding: 0;
    background-position: 28% center;
  }

  .hero-image {
    height: 100%;
  }

  .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: 8px;
    margin-bottom: 2.5vh;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number-wrapper {
    width: 65px;
    height: 65px;
    padding: 5px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 24px;
  }

  .countdown-label {
    width: 65px;
    height: 20px;
    font-size: 8px;
    letter-spacing: 1px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    margin-top: 0;
  }

  .hero-image {
    height: 100%;
  }

  .countdown-container {
    max-width: 380px;
    gap: 7px;
  }

  .countdown-item {
    min-width: 58px;
  }

  .countdown-number-wrapper {
    width: 62px;
    height: 62px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 22px;
  }

  .countdown-label {
    width: 62px;
    height: 19px;
    font-size: 7.5px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 100vh;
    margin-top: 0;
  }

  .hero-image {
    height: 100vh;
  }

  .countdown-container {
    max-width: 340px;
    gap: 6px;
  }

  .countdown-item {
    min-width: 55px;
  }

  .countdown-number-wrapper {
    width: 58px;
    height: 58px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 21px;
  }

  .countdown-label {
    width: 58px;
    height: 18px;
    font-size: 7px;
  }
}

@media (max-width: 375px) {
  .hero {
    min-height: 100vh;
    margin-top: 0;
  }

  .hero-image {
    height: 100vh;
  }

  .countdown-container {
    max-width: 320px;
    gap: 5px;
  }

  .countdown-item {
    min-width: 52px;
  }

  .countdown-number-wrapper {
    width: 55px;
    height: 55px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 20px;
  }

  .countdown-label {
    width: 55px;
    height: 17px;
    font-size: 6.5px;
  }
}

@media (max-width: 320px) {
  .hero {
    min-height: 100vh;
    margin-top: 0;
  }

  .hero-image {
    height: 100vh;
  }

  .countdown-container {
    max-width: 280px;
    gap: 4px;
  }

  .countdown-item {
    min-width: 48px;
  }

  .countdown-number-wrapper {
    width: 50px;
    height: 50px;
    padding: 3px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 18px;
  }

  .countdown-label {
    width: 50px;
    height: 16px;
    font-size: 6px;
    letter-spacing: 0.5px;
  }
}

/* Music Player Button - Versão Profissional */
.music-player-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.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;
}

.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: 23px;
  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;
  margin: 20px 0 30px;
}

.music-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-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 SUBTITLE TOP ===== */
.event-subtitle-top {
  text-align: center;
  color: var(--text-dark);
  font-style: italic;
  margin-top: 5vh;
  margin-bottom: 5vh;
  font-size: 23px;
  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;
  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 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;
}

/* 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: "Montserrat", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 40px;
  background: var(--secondary-color);
  color: var(--white);
  transition: none;
}

.action-btn-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  display: inline-block;
}

.action-btn-primary,
.action-btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: var(--primary-color) 1px solid;
}

.action-btn:hover .action-btn-text,
.action-btn:active .action-btn-text {
  font-weight: 300;
}

/* ===== 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;
  }
}

/* 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;
  }

  .action-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* 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;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .event-subtitle-top {
    font-size: 16px;
    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;
  }

  .action-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* 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;
  }
}

/* Section Titles - Watercolor Style */
.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Great Vibes", cursive;
  text-shadow: 2px 2px 4px rgba(139, 157, 124, 0.15);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsividade dos títulos */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}

/* Our Story Section - CORRIGIDA para usar container igual event-info */
.our-story {
  padding: 120px 0;
  width: 100%;
}

.our-story .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.story-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  align-items: center;
}

/* Texto - lado esquerdo */
.story-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  width: 100%;
}

.story-text p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: justify;
}

.story-text p:last-of-type {
  margin-bottom: 0;
}

.signature {
  font-style: italic;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 20px;
  text-align: right;
  width: 100%;
}

/* Grid de Fotos - lado direito */
.story-photos {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

/* TODAS as fotos com o mesmo tamanho */
.photo-card {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(139, 157, 124, 0.15);
  transition: all 0.3s ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Responsivo Our Story */
@media (max-width: 992px) {
  .our-story {
    padding: 100px 0;
  }

  .story-layout {
    gap: 30px;
  }

  .story-text {
    max-width: 400px;
  }

  .story-photos {
    gap: 12px;
  }

  .photo-card {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .our-story {
    padding: 80px 0;
  }

  .story-layout {
    flex-direction: column;
    gap: 40px;
  }

  .story-text {
    max-width: 100%;
  }

  /* 2 colunas no mobile */
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .our-story {
    padding: 60px 0;
  }

  .story-photos {
    gap: 8px;
  }

  .photo-card {
    height: 190px;
  }

  .story-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .our-story {
    padding: 50px 0;
  }

  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .photo-card {
    height: 170px;
  }
}

@media (max-width: 380px) {
  .our-story {
    padding: 40px 0;
  }

  .story-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card {
    height: 150px;
  }
}

@media (max-width: 320px) {
  .our-story {
    padding: 30px 0;
  }

  .story-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card {
    height: 160px;
  }
}

/* Buttons - Watercolor Style */
.btn {
  display: inline-block;
  padding: 12px 35px;
  text-decoration: none;
  border-radius: 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 157, 124, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 157, 124, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-large {
  padding: 15px 45px;
  font-size: 1.1rem;
}

/* Messages Wall Section - Versão revisada e CORRIGIDA com suporte a gestos */
.messages-wall {
  padding: 120px 0;
  width: 100%;
  background-color: transparent;
}

.messages-wall .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.messages-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 60px;
}

/* LADO ESQUERDO */
.messages-left {
  text-align: left;
}

.messages-left .section-title {
  font-family: "Great Vibes", cursive;
  font-size: 3.2rem;
  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;
}

/* LADO DIREITO */
.messages-right-area {
  background: transparent;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--primary-color);
}

/* 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: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  letter-spacing: 1px;
  max-width: 100%;
  white-space: nowrap;
}

.wall-button:hover {
  background: 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: transparent;
  border: 1px solid var(--primary-color);
  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;
}

/* Feedback visual durante o arrasto */
.messages-carousel.swiping {
  transition: none !important;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
  .messages-wall {
    padding: 100px 0;
  }

  .messages-layout {
    gap: 50px;
  }

  .messages-left .section-title {
    font-size: 3rem;
  }

  .message-card {
    padding: 25px 20px;
    min-height: 260px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .carousel-arrow.prev {
    left: -10px;
  }

  .carousel-arrow.next {
    right: -10px;
  }
}

@media (max-width: 992px) {
  .messages-wall {
    padding: 80px 0;
  }

  .messages-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .messages-left {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .messages-left .section-title {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .messages-left .section-subtitle {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .messages-right-area {
    margin-top: 0;
    padding: 50px;
    min-height: auto;
    max-width: 100%;
    border-radius: 20px;
  }

  .message-slide {
    gap: 15px;
  }

  .message-card {
    min-height: 250px;
    padding: 25px 20px;
  }

  .carousel-arrow {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .carousel-arrow.prev {
    left: -5px;
  }

  .carousel-arrow.next {
    right: -5px;
  }

  .wall-button {
    margin-top: 35px;
    padding: 12px 35px;
  }
}

@media (max-width: 768px) {
  .messages-wall {
    padding: 70px 0;
  }

  .messages-layout {
    gap: 40px;
  }

  .messages-left .section-title {
    font-size: 2.8rem;
  }

  .messages-left .section-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .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: 2.5rem;
  }

  .messages-left .section-subtitle {
    font-size: 0.9rem;
  }

  .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 {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .messages-wall {
    padding: 50px 0;
  }

  .messages-left .section-title {
    font-size: 2.3rem;
  }

  .messages-left .section-subtitle {
    font-size: 0.85rem;
  }

  .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: 2.2rem;
  }

  .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;
  }
}

/* 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;
}

/* Garantias extras de responsividade */
@media (max-width: 360px) {
  .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;
  }
}

/* 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 (for sub-pages) */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--bg-light) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.page-hero .container {
  width: 100%;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: "Great Vibes", cursive;
}

.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 h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .rings-decoration img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 60px 15px;
  }
}

/* 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: 120px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(139, 157, 124, 0.05) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.rsvp-card {
  max-width: 650px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(139, 157, 124, 0.2);
  border: 1px solid rgba(139, 157, 124, 0.15);
  transition: all 0.3s ease;
}

.rsvp-card h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 3rem;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  letter-spacing: 1px;
}

.form-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 45px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  border-bottom: 1px dashed rgba(139, 157, 124, 0.3);
  padding-bottom: 20px;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(139, 157, 124, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--text-dark);
}

.form-group input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
  font-style: italic;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(139, 157, 124, 0.1);
}

/* 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: 20px;
  border-bottom: 1px dashed rgba(139, 157, 124, 0.2);
}

/* Botão de adicionar acompanhante */
#btnAdicionarAcompanhante {
  background: transparent;
  color: var(--primary-color);
  border: 2px dashed var(--primary-color);
  padding: 12px 25px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 0 20px;
  width: auto;
  display: inline-block;
  letter-spacing: 0.3px;
}

#btnAdicionarAcompanhante:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 157, 124, 0.3);
}

/* 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: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
  width: 100%;
  text-transform: uppercase;
  border-radius: 50px;
  background: var(--primary-color);
  border: none;
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(139, 157, 124, 0.2);
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 157, 124, 0.3);
  background: var(--primary-color);
}

.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: 100px 15px;
  }

  .rsvp-card {
    max-width: 100%;
    padding: 45px 30px;
  }

  .rsvp-card h2 {
    font-size: 2.5rem;
  }

  .form-intro {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group select {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  #btnAdicionarAcompanhante {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .rsvp-card {
    padding: 35px 20px;
  }

  .rsvp-card h2 {
    font-size: 2.2rem;
  }

  .form-intro {
    font-size: 0.9rem;
    padding-bottom: 15px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group select {
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .acompanhante-item:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  #btnAdicionarAcompanhante {
    padding: 8px 18px;
    font-size: 0.85rem;
    width: 100%;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .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: 2rem;
  }

  .form-intro {
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 12px 25px;
    font-size: 0.85rem;
  }
}

/* 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;
    width: 100%;
    max-width: 280px;
  }
}

/* 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-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .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);
}

.dica-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.dica-botoes .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-instagram-outline {
  border: 1px solid #000;
  background: transparent;
  color: #000;
}

.btn-instagram-outline:hover,
.btn-instagram-outline:focus,
.btn-instagram-outline:active {
  border: 1px solid #000;
  background: transparent;
  color: #000;
  box-shadow: none;
}

/* 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);
  }

  .dica-botoes {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dica-lista-distancia {
    font-size: 0.9rem;
    padding: 3px 10px;
  }

  .dica-extra {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .dica-botoes {
    gap: 8px;
  }

  .dica-botoes .btn {
    font-size: 0.85rem;
    padding: 0.45rem 0.75rem;
  }

  .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;
  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: 260px;
  height: auto;
  display: block;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.minimal-icon img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  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: 200px;
    height: auto;
    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: 170px;
    height: auto;
    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: 40px 0 100px;
  isolation: isolate;
}

.padrinhos-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Card horizontal: foto à esquerda, texto à direita */
.padrinho-card {
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: row;
  width: 100%;
}

/* Card par: foto à direita */
.padrinho-card:nth-child(even) {
  flex-direction: row-reverse;
}

.padrinho-photo {
  width: 300px;
  min-width: 300px;
  overflow: hidden;
  position: relative;
}

.padrinho-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%; /* Foca mais no rosto (20% do topo) */
  display: block;
  transition: transform 0.3s ease; /* Efeito suave ao hover */
}

.padrinho-info {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.padrinho-info h3 {
  font-family: "Great Vibes", cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}

.padrinho-role {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.4;
}

.minimal-icon-padrinhos img {
  width: 260px;
  margin-top: 20px;
  margin-bottom: 20px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Linha decorativa sutil abaixo da role */
.padrinho-role::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  margin-top: 16px;
  margin-bottom: 4px;
}

/* Mensagem personalizada — sobrescreve animações do .minimal-text */
.padrinho-message {
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text-dark);
  text-align: justify;
  margin: 10px 0 0;
  max-width: 100%;
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

/* ——— Responsivo: Desktop Pequeno (992px – 1199px) ——— */
@media (max-width: 1199px) and (min-width: 992px) {
  .padrinho-photo {
    width: 280px;
    min-width: 280px;
  }

  .padrinho-info {
    padding: 35px 40px;
  }
}

/* ——— Responsivo: Tablet (768px – 991px) ——— */
@media (max-width: 991px) and (min-width: 768px) {
  .padrinhos-section {
    padding: 30px 0 80px;
  }

  .padrinhos-grid {
    gap: 40px;
    max-width: 100%;
  }

  .padrinho-photo {
    width: 280px; /* Aumentado de 260px */
    min-width: 280px; /* Aumentado de 260px */
    height: 320px; /* Altura fixa adicionada */
  }

  .padrinho-info {
    padding: 32px 32px;
  }

  .padrinho-info h3 {
    font-size: 2.4rem;
  }
}

/* ——— Responsivo: Mobile (até 767px) ——— */
@media (max-width: 767px) {
  .padrinhos-section {
    padding: 20px 0 70px;
  }

  .padrinhos-grid {
    gap: 30px;
    padding: 0 15px;
  }

  /* Empilha foto em cima, texto embaixo */
  .padrinho-card,
  .padrinho-card:nth-child(even) {
    flex-direction: column;
  }

  .padrinho-photo {
    width: 100%;
    min-width: unset;
    height: 400px; /* Aumentado de 300px */
  }

  .padrinho-info {
    padding: 28px 24px;
  }

  .padrinho-info h3 {
    font-size: 2.2rem;
  }

  .padrinho-role {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .padrinho-message {
    font-size: 0.86rem;
    line-height: 1.85;
  }
}

/* ——— Responsivo: Mobile Pequeno (até 480px) ——— */
@media (max-width: 480px) {
  .padrinhos-grid {
    gap: 24px;
    padding: 0 12px;
  }

  .padrinho-photo {
    height: 350px; /* Aumentado de 260px */
  }

  .padrinho-info {
    padding: 24px 20px;
  }

  .padrinho-info h3 {
    font-size: 2rem;
  }

  .padrinho-message {
    font-size: 0.84rem;
  }
}

/* ——— Responsivo: Mobile Extra Pequeno (até 360px) ——— */
@media (max-width: 360px) {
  .padrinhos-grid {
    gap: 20px;
    padding: 0 10px;
  }

  .padrinho-photo {
    height: 300px; /* Aumentado de 240px */
  }

  .padrinho-info {
    padding: 20px 16px;
  }

  .padrinho-info h3 {
    font-size: 1.8rem;
  }

  .padrinho-role {
    font-size: 0.7rem;
    letter-spacing: 1.8px;
  }

  .padrinho-message {
    font-size: 0.82rem;
    line-height: 1.8;
  }
}
