/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8f957b;
  --secondary-color: #8f957b;
  --accent-color: #f5f1e8;
  --text-dark: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-light: #fdfbf7;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --watercolor-green: #a8b89d;
  --watercolor-beige: #e8dcc8;
  --watercolor-sage: #b8c5a8;
}

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;
}

/* 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: 100px;
  height: 100px;
  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);
  }

  .navbar-nav {
    align-items: flex-end;
  }

  .nav-item {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  /* 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;
  }

  /* CORREÇÃO: Garantir que links ativos mantenham o peso 300 no mobile */
  .nav-link.active {
    font-weight: 300 !important;
  }

  /* Ajuste da seta do dropdown no mobile */
  .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
  }

  .nav-link.dropdown-toggle::after {
    float: none !important;
    margin-top: 0 !important;
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
    order: 0;
    transition: transform 0.2s ease;
  }

  /* Hover no mobile também */
  .nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
  }

  /* DROPDOWN ABRIR NO HOVER - desativado no mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Mantém o comportamento de clique no mobile */
  .dropdown.show .dropdown-menu {
    display: block !important;
  }

  /* Linha no mobile */
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    right: 20px;
    left: auto;
    background-color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    opacity: 1;
    width: calc(100% - 40px);
  }

  /* DROPDOWN MENU - Mobile */
  .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: rgba(139, 157, 124, 0.3);
    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;
  }

  .dropdown-item {
    text-align: right;
    padding: 10px 25px;
    color: var(--text-dark) !important;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    background-color: transparent;
  }

  /* CORREÇÃO: Garantir que dropdown items ativos mantenham o peso 300 no mobile */
  .dropdown-item.active {
    font-weight: 300 !important;
  }

  /* Remove qualquer pseudo-elemento direto do dropdown-item no mobile */
  .dropdown-item::after {
    display: none !important;
  }

  .dropdown-item span {
    position: relative;
    display: inline-block;
  }

  .dropdown-item span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    right: 0;
    left: auto;
    background-color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .dropdown-item:hover span::after,
  .dropdown-item:focus span::after,
  .dropdown-item:active span::after,
  .dropdown-item.active span::after {
    opacity: 1;
  }

  /* Remove qualquer movimento do texto */
  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active,
  .dropdown-item.active {
    background-color: transparent !important;
    color: var(--text-dark) !important;
  }
}

/* Pequenos ajustes para telas muito pequenas */
@media (max-width: 576px) {
  .nav-logo {
    width: 70px;
    height: 70px;
  }
}

/* Hero Section - Watercolor Style */
.hero {
  background-color: rgb(255, 255, 255);
  padding: 0 20px;
  text-align: center;
  min-height: calc(100vh - 140px); /* Subtrai a altura do navbar */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centraliza verticalmente */
  position: relative;
  margin-top: 140px; /* Espaço para o navbar fixo */
}

/* Container da imagem - ocupa o espaço disponível */
.hero-image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3vh; /* Margem inferior para separar das informações */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto; /* Não expande, tamanho baseado no conteúdo */
}

.hero-image img {
  width: 100%;
  max-width: 530px;
  height: auto; /* Mantém a proporção original */
  display: block;
  object-fit: contain; /* Garante que a imagem não distorça */
}

/* Container do contador e informações - ABAIXO da imagem */
.hero-countdown {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto; /* Não expande, tamanho baseado no conteúdo */
}

/* Wedding Info antes do contador */
.wedding-info {
  margin-bottom: 2vh;
  text-align: center;
  padding: 1vh 0;
  backdrop-filter: blur(3px);
  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;
}

/* ===== VALORES REDUZIDOS PARA A DATA ===== */
.day-month {
  font-size: 24px; /* Reduzido de 28px */
  font-weight: 300;
  color: var(--primary-color);
  letter-spacing: 2px;
  line-height: 1.2;
}

.month-year {
  font-size: 24px; /* Reduzido de 28px */
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 2px;
  line-height: 1.2;
}

.wedding-location {
  font-size: 14px; /* Reduzido de 16px */
  color: var(--secondary-color);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.location {
  display: inline-block;
  padding: 0.8vh 2vw;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Countdown Styles */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  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-color: var(--primary-color);
  border-radius: 8px;
  width: 75px;
  height: 75px;
  padding: 8px;
  box-shadow: 0 5px 15px rgba(139, 157, 124, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}

.minus-sign {
  font-family: "Italianno", cursive;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-right: 2px;
  transform: translateY(-2px);
}

.countdown-number {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  transform: translateY(-2px);
}

.countdown-label {
  font-size: 10px;
  background-color: var(--primary-color);
  border-radius: 8px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 0.3vh;
  font-weight: 300;
  width: 75px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Quando for negativo, muda a cor */
.countdown-item.negative .countdown-number-wrapper {
  background-color: #c496a0;
}

.countdown-item.negative .minus-sign,
.countdown-item.negative .countdown-number {
  color: #ffffff;
}

/* Ajuste para o navbar fixo */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 20px 0;
  transition: all 0.2s ease;
}

.navbar-index {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  backdrop-filter: none;
  box-shadow: none;
  padding: 20px 0;
  transition: all 0.2s ease;
}

.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;
}
/* Responsividade - Apenas ajustes mobile */
@media (max-width: 992px) {
  .hero {
    min-height: calc(100vh - 120px);
    margin-top: 120px;
  }

  .hero-image {
    max-width: 900px;
    margin-bottom: 2.5vh;
  }

  .hero-image img {
    max-width: 700px;
  }

  .hero-countdown {
    max-width: 900px;
  }

  .day-month,
  .month-year {
    font-size: 22px; /* Reduzido de 26px */
  }

  .wedding-location {
    font-size: 13px; /* Reduzido de 15px */
  }

  .countdown-container {
    max-width: 500px;
    gap: 10px;
  }

  .countdown-number-wrapper {
    width: 75px;
    height: 75px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    width: 75px;
    height: 24px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 100px);
    margin-top: 100px;
    justify-content: center;
    padding-top: 0;
  }

  .hero-image {
    max-width: 700px;
    margin-bottom: 2vh;
  }

  .hero-image img {
    max-width: 600px;
  }

  .hero-countdown {
    max-width: 700px;
  }

  .day-month,
  .month-year {
    font-size: 20px; /* Reduzido de 24px */
  }

  .wedding-location {
    font-size: 12px; /* Reduzido de 14px */
  }

  .countdown-container {
    max-width: 550px;
    gap: 10px;
    margin-bottom: 4vh;
  }

  .countdown-item {
    min-width: 70px;
  }

  .countdown-number-wrapper {
    width: 70px;
    height: 70px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 26px;
  }

  .countdown-label {
    width: 70px;
    height: 22px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    justify-content: center;
    padding-top: 0;
  }

  .hero-image {
    max-width: 550px;
    margin-bottom: 1.5vh;
  }

  .hero-image img {
    max-width: 480px;
  }

  .hero-countdown {
    max-width: 550px;
  }

  .day-month,
  .month-year {
    font-size: 18px; /* Reduzido de 22px */
  }

  .wedding-location {
    font-size: 11px; /* Reduzido de 13px */
  }

  .countdown-container {
    max-width: 480px;
    gap: 8px;
    margin-bottom: 3vh;
  }

  .countdown-item {
    min-width: 65px;
  }

  .countdown-number-wrapper {
    width: 65px;
    height: 65px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 24px;
  }

  .countdown-label {
    width: 65px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    justify-content: center;
    padding: 0 15px;
  }

  .hero-image {
    max-width: 500px;
    margin-bottom: 1vh;
  }

  .hero-image img {
    max-width: 420px;
  }

  .wedding-info {
    padding: 0.5vh 0;
  }

  .day-month,
  .month-year {
    font-size: 16px; /* Reduzido de 20px */
  }

  .wedding-location {
    font-size: 10px; /* Reduzido de 12px */
  }

  .countdown-container {
    max-width: 400px;
    gap: 6px;
    margin-bottom: 2.5vh;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number-wrapper {
    width: 60px;
    height: 60px;
    padding: 5px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 22px;
  }

  .countdown-label {
    width: 60px;
    height: 18px;
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  /* iPhone 12, 13, 14 */
  .hero {
    min-height: calc(100vh - 70px);
    margin-top: 70px;
  }

  .hero-image {
    max-width: 450px;
    margin-bottom: 1vh;
  }

  .hero-image img {
    max-width: 380px;
  }

  .day-month,
  .month-year {
    font-size: 15px; /* Reduzido de 18px */
  }

  .wedding-location {
    font-size: 9px; /* Reduzido de 11px */
  }

  .countdown-container {
    max-width: 380px;
    gap: 6px;
  }

  .countdown-item {
    min-width: 58px;
  }

  .countdown-number-wrapper {
    width: 58px;
    height: 58px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 21px;
  }

  .countdown-label {
    width: 58px;
    height: 18px;
    font-size: 8px;
  }
}

@media (max-width: 390px) {
  /* iPhone 12 mini, 13 mini */
  .hero {
    min-height: calc(100vh - 60px);
    margin-top: 60px;
  }

  .hero-image {
    max-width: 400px;
  }

  .hero-image img {
    max-width: 340px;
  }

  .day-month,
  .month-year {
    font-size: 14px; /* Reduzido de 17px */
  }

  .wedding-location {
    font-size: 8px; /* Reduzido de 10px */
  }

  .countdown-container {
    max-width: 340px;
  }

  .countdown-item {
    min-width: 55px;
  }

  .countdown-number-wrapper {
    width: 55px;
    height: 55px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 20px;
  }

  .countdown-label {
    width: 55px;
    height: 17px;
    font-size: 7.5px;
  }
}

@media (max-width: 375px) {
  /* iPhone SE, iPhone 6/7/8 */
  .hero {
    min-height: calc(100vh - 60px);
    margin-top: 60px;
  }

  .hero-image {
    max-width: 380px;
  }

  .hero-image img {
    max-width: 320px;
  }

  .day-month,
  .month-year {
    font-size: 13px; /* Reduzido de 16px */
  }

  .wedding-location {
    font-size: 7px; /* Reduzido de 9px */
  }

  .countdown-container {
    max-width: 320px;
  }

  .countdown-item {
    min-width: 52px;
  }

  .countdown-number-wrapper {
    width: 52px;
    height: 52px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 19px;
  }

  .countdown-label {
    width: 52px;
    height: 16px;
    font-size: 7px;
  }
}

@media (max-width: 320px) {
  .hero {
    min-height: calc(100vh - 50px);
    margin-top: 50px;
  }

  .hero-image {
    max-width: 320px;
  }

  .hero-image img {
    max-width: 280px;
  }

  .day-month,
  .month-year {
    font-size: 12px; /* Reduzido de 14px */
  }

  .wedding-location {
    font-size: 6px; /* Reduzido de 8px */
  }

  .countdown-container {
    max-width: 280px;
  }

  .countdown-item {
    min-width: 48px;
  }

  .countdown-number-wrapper {
    width: 48px;
    height: 48px;
    padding: 3px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 17px;
  }

  .countdown-label {
    width: 48px;
    height: 15px;
    font-size: 6.5px;
  }
}
/* Music Player Button - Versão Profissional */
.music-player-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.music-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--watercolor-green)
  );
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 157, 124, 0.3);
  position: relative;
  overflow: hidden;
}

.music-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 157, 124, 0.4);
}

.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 ===== */
.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-color: 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 CARDS ===== */
.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;
}

.event-card:last-child {
  margin-right: 0;
}

.event-card:nth-child(3) {
  margin-right: 0;
  margin-left: 0;
}

.event-card:first-child {
  margin-left: 0;
}

.event-card:hover {
  transform: translateY(-8px);
}

.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: var(--secondary-color);
  color: var(--white);
  border: none;
}

.action-btn:hover,
.action-btn-primary:hover,
.action-btn-secondary:hover,
.action-btn:active,
.action-btn-primary:active,
.action-btn-secondary:active {
  background: var(--secondary-color);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.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;
  }

  .event-card:nth-child(3) {
    margin-right: 0;
  }

  .event-card .image-container {
    height: 180px;
    margin-bottom: 18px;
  }

  .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:nth-child(3) {
    margin-right: 0;
  }

  .event-card .image-container {
    height: 160px;
    margin-bottom: 15px;
  }

  .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:nth-child(3) {
    margin-right: 0;
  }

  .event-card .image-container {
    height: 140px;
    margin-bottom: 12px;
  }

  .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 0 5px;
  }

  .event-card {
    width: 240px;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .event-card:last-child {
    margin-bottom: 0;
  }

  .event-card:nth-child(3) {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .event-card .image-container {
    height: 200px;
    margin-bottom: 8px;
  }

  .event-card img {
    max-width: 85%;
    max-height: 85%;
  }

  .event-card h3 {
    font-size: 2.2rem;
    margin-top: 0;
  }

  .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 0 3px;
  }

  .event-card {
    width: 220px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .event-card:last-child {
    margin-bottom: 0;
  }

  .event-card:nth-child(3) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .event-card .image-container {
    height: 180px;
    margin-bottom: 5px;
  }

  .event-card img {
    max-width: 80%;
    max-height: 80%;
  }

  .event-card h3 {
    font-size: 2rem;
    margin-top: 0;
  }
}

/* Section Titles - Watercolor Style */
.section-title {
  font-size: 3rem; /* Aumentado de 2.5rem */
  text-align: center;
  margin-bottom: 20px; /* Aumentado de 15px */
  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; /* Aumentado de 30px */
  font-size: 1.1rem; /* Aumentado de 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%;
  }

  /* MOBILE - ALTERADO PARA 2 COLUNAS (foto foto / foto foto) */
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .photo-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .our-story {
    padding: 60px 0;
  }

  .story-photos {
    gap: 10px;
  }

  .photo-card {
    height: 200px;
  }

  .story-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .story-photos {
    gap: 8px;
  }

  .photo-card {
    height: 170px;
  }
}

@media (max-width: 380px) {
  .photo-card {
    height: 150px;
  }
}

@media (max-width: 320px) {
  .photo-card {
    height: 130px;
  }
}

/* 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: linear-gradient(
    135deg,
    var(--primary-color),
    var(--watercolor-green)
  );
  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: linear-gradient(
    135deg,
    var(--primary-color),
    var(--watercolor-green)
  );
  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: #8b9d7c;
  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-color: #8b9d7c;
  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;
}

/* 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: #8b9d7c;
  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: #8b9d7c;
}

.carousel-arrow:hover {
  background: #8b9d7c;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: -15px;
}

.carousel-arrow.next {
  right: -15px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* INDICADORES */
.carousel-indicators {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* BOTÃO */
.wall-button {
  margin-top: 40px;
  padding: 14px 40px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  letter-spacing: 1px;
  max-width: 100%;
  white-space: nowrap;
}

.wall-button:hover {
  background: white;
  color: #8b9d7c;
  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; /* Centraliza os itens do formulário */
}

.message-form-container textarea,
.message-form-container input {
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.message-form-container .wall-button {
  margin: 0 auto; /* Centraliza o botão horizontalmente */
  display: block; /* Garante que o margin auto funcione */
}

.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 {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@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; /* Menos arredondado para caber melhor */
  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; /* Alinhar ao topo para texto maior */
  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; /* SEMPRE quebrar linha */
  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; /* Usa margem dos dois lados no mobile */
    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%; /* Largura total */
  display: flex;
  align-items: center; /* Centraliza conteúdo verticalmente */
  justify-content: center; /* Centraliza conteúdo horizontalmente */
  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; /* Aumentado para acomodar múltiplos campos */
  margin: 0 auto;
  background-color: var(--white);
  padding: 60px 50px;
  border-radius: 12px; /* Suavizado */
  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: linear-gradient(135deg, var(--primary-color) 0%, #a0b38c 100%);
  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: linear-gradient(135deg, #9bb089 0%, var(--primary-color) 100%);
}

.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%; /* Ocupa toda largura em mobile */
  }

  .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: 40px 20px;
  background-color: var(--bg-light);
}

/* Quadrado centralizado */
.feed-container {
  width: 900px;
  max-width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(139, 157, 124, 0.25);
  padding: 40px;
  text-align: center;
}

/* Títulos */
.feed-title {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 400;
}

.feed-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.feed-subtitle strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Container com scroll APENAS VERTICAL */
.feed-gallery-container {
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  margin-bottom: 25px;
  border-radius: 12px;
}

/* Custom scrollbar fina */
.feed-gallery-container::-webkit-scrollbar {
  width: 6px;
}

.feed-gallery-container::-webkit-scrollbar-track {
  background: #f0e9e0;
  border-radius: 10px;
}

.feed-gallery-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.feed-gallery-container::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Grid de fotos - 3 colunas fixas */
.feed-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Cards de foto - TAMANHO FIXO para caber no container */
.feed-gallery-item {
  width: 100%;
  height: 180px; /* Altura fixa para caber 3 linhas no scroll */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(139, 157, 124, 0.15);
  transition: transform 0.2s ease;
}

.feed-gallery-item:hover {
  transform: scale(1.02);
}

.feed-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botão */
.feed-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 157, 124, 0.2);
}

.feed-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 157, 124, 0.3);
}

.feed-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Telas médias */
@media (max-width: 1000px) {
  .feed-container {
    width: 800px;
    padding: 35px;
  }

  .feed-gallery-item {
    height: 160px;
  }
}

/* Tablet: 2 colunas */
@media (max-width: 850px) {
  .feed-container {
    width: 650px;
    padding: 30px;
  }

  .feed-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feed-gallery-item {
    height: 200px;
  }

  .feed-title {
    font-size: 2.5rem;
  }

  .feed-gallery-container {
    height: 450px;
  }
}

/* Mobile grande */
@media (max-width: 700px) {
  .feed-container {
    width: 500px;
    padding: 25px;
  }

  .feed-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feed-gallery-item {
    height: 170px;
  }

  .feed-gallery-container {
    height: 400px;
  }
}

/* Mobile: 1 coluna */
@media (max-width: 550px) {
  .feed-container {
    width: 100%;
    padding: 20px;
  }

  .feed-gallery-grid {
    grid-template-columns: 1fr;
  }

  .feed-gallery-item {
    height: 250px;
  }

  .feed-title {
    font-size: 2.2rem;
  }

  .feed-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .feed-gallery-container {
    height: 450px;
  }

  .feed-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
  .feed-container {
    padding: 15px;
  }

  .feed-gallery-item {
    height: 200px;
  }

  .feed-title {
    font-size: 2rem;
  }

  .feed-gallery-container {
    height: 400px;
  }
}

/**
 * ============================================
 * ESTILOS DA PÁGINA DE DICAS
 * Layout intercalado com efeito scroll reveal
 * ============================================
 */

/* Seções */
.dicas-section {
  padding: 80px 0;
  background-color: var(--white);
  overflow: hidden;
}

.dicas-section.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

/* Cards intercalados */
.dica-card {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.dica-card:last-child {
  margin-bottom: 0;
}

.dica-card.destaque {
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

/* Imagens */
.dica-imagem {
  flex: 0 0 300px;
}

.dica-imagem.large {
  flex: 0 0 350px;
}

.img-circular {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(139, 157, 124, 0.3);
  border: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.img-circular-large {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(139, 157, 124, 0.3);
  border: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

/* Conteúdo */
.dica-conteudo {
  flex: 1;
}

.dica-conteudo h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.dica-categoria {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.dica-descricao {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Estilos para os links */
.dica-link {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.dica-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

.text-center {
  text-align: center;
}

/* ============================================ */
/* ESTILOS ESPECIAIS PARA SEÇÃO DE AEROPORTOS */
/* ============================================ */

/* Lista de distâncias */
.dica-lista {
  margin: 20px 0;
  width: 100%;
}

.dica-lista-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(139, 157, 124, 0.2);
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.dica-lista-item:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(139, 157, 124, 0.05), transparent);
}

.dica-lista-local {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
  position: relative;
  padding-left: 15px;
}

.dica-lista-local::before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.dica-lista-distancia {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(139, 157, 124, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Separador sutil */
.dica-separador {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.dica-separador::before,
.dica-separador::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 40px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.dica-separador::before {
  left: 0;
}

.dica-separador::after {
  right: 0;
}

.dica-separador-flor {
  font-family: "Great Vibes", cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  display: inline-block;
  background: white;
  padding: 0 15px;
}

/* Título secundário */
.h3-secundario {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 15px 0 10px;
  position: relative;
  display: inline-block;
}

/* Dica extra */
.dica-extra {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 25px;
  padding: 12px 18px;
  background: rgba(139, 157, 124, 0.05);
  border-radius: 50px;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139, 157, 124, 0.1);
  width: auto;
}

.dica-extra-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .dica-lista-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 12px 0;
  }

  .dica-lista-local {
    padding-left: 0;
  }

  .dica-lista-local::before {
    display: none;
  }

  .dica-lista-distancia {
    align-self: center;
  }

  .dica-extra {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .dica-separador::before,
  .dica-separador::after {
    width: calc(50% - 30px);
  }
}

@media (max-width: 480px) {
  .dica-lista-distancia {
    font-size: 0.9rem;
    padding: 3px 10px;
  }

  .dica-extra {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .dica-separador-flor {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}

/* ============================================ */
/* EFEITO SCROLL REVEAL */
/* ============================================ */

/* Estado inicial (escondido) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.left {
  transform: translateX(-50px);
}

.scroll-reveal.right {
  transform: translateX(50px);
}

.scroll-reveal.fade-up {
  transform: translateY(50px);
}

/* Estado visível */
.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Responsividade - Tablet e Mobile */
@media (max-width: 968px) {
  .dica-card {
    gap: 0px;
  }

  .dica-imagem {
    flex: 0 0 250px;
  }

  .img-circular {
    width: 250px;
    height: 250px;
  }
}

/* ============================================ */
/* RESPONSIVIDADE CORRIGIDA - ORDEM: TÍTULO, FOTO, INFO */
/* ============================================ */
@media (max-width: 768px) {
  .dicas-section {
    padding: 60px 20px;
  }

  /* Mobile: ordem sempre Imagem -> Título -> Categoria -> Descrição */
  .dica-card {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 70px;
    text-align: center;
  }

  /* Imagem sempre primeiro - espaço menor para ficar próximo do conteúdo */
  .dica-card .dica-imagem {
    order: 1;
    margin: 0 auto 15px;
    width: 220px;
    height: 220px;
  }

  .img-circular {
    width: 220px;
    height: 220px;
  }

  /* Conteúdo (título + categoria + descrição) vem depois */
  .dica-card .dica-conteudo {
    order: 2;
    width: 100%;
  }

  /* Título */
  .dica-conteudo h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Categoria e descrição */
  .dica-categoria,
  .dica-descricao {
    text-align: center;
  }

  .dica-categoria {
    margin-bottom: 15px;
    font-weight: 600;
  }

  .dica-descricao {
    margin-bottom: 0;
  }

  /* Para o card de destaque (ponto turístico) */
  .dica-card.destaque {
    display: block;
  }

  .dica-card.destaque .dica-imagem.large {
    margin: 0 auto 30px;
    width: 280px;
    height: 280px;
  }

  .img-circular-large {
    width: 280px;
    height: 280px;
  }

  /* Ajuste dos efeitos no mobile */
  .scroll-reveal.left,
  .scroll-reveal.right,
  .scroll-reveal.fade-up {
    transform: translateY(30px);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.5rem;
  }

  .dica-conteudo h3 {
    font-size: 1.6rem;
  }

  .dica-imagem {
    width: 200px;
    height: 200px;
  }

  .img-circular {
    width: 200px;
    height: 200px;
  }

  .dica-card.destaque .dica-imagem.large {
    width: 240px;
    height: 240px;
  }

  .img-circular-large {
    width: 240px;
    height: 240px;
  }

  .dica-descricao {
    font-size: 0.95rem;
  }
}

/* Minimal Pages Style */
.minimal-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* Mudado de 'center' para 'flex-start' para o conteúdo começar do topo */
  padding: 120px 20px 80px;
  /* Adicionando padding-top extra para garantir que o conteúdo comece mais abaixo */
  padding-top: 30vh; /* Isso faz o conteúdo começar a 30% da altura da viewport */
}

.minimal-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  /* Adicionando animação de entrada */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

/* Animação para o conteúdo aparecer suavemente */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Atrasos na animação para cada elemento aparecer sequencialmente */
.minimal-title {
  font-size: 3.5rem;
  margin: 10px 0 30px;
  color: inherit;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.minimal-icon {
  margin: 20px auto 40px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.minimal-icon img {
  width: 260px;
  height: auto;
  object-fit: contain;
  filter: brightness(0.8);
  transition: opacity 0.3s ease;
}

.minimal-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 40px auto;
  max-width: 500px;
  text-align: justify;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.location-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.location-address {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
  margin: 0px auto;
  max-width: 500px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.minimal-map-icon {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.map-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.map-link {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: var(--primary-color);
}

.minimal-note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 50px;
  font-style: italic;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .map-image {
    width: 100px;
    height: 100px;
  }

  .minimal-title {
    font-size: 2.5rem;
  }

  .minimal-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
  }

  .minimal-text {
    font-size: 0.9rem;
  }

  .minimal-page {
    padding-top: 25vh; /* Reduzido um pouco em tablets */
  }
}

@media (max-width: 480px) {
  .map-image {
    width: 90px;
    height: 90px;
  }

  .minimal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .minimal-page {
    padding-top: 20vh; /* Reduzido ainda mais em mobile */
  }
}

/* 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;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 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;
  width: 100%;
  max-width: 350px;
}

/* Ícone dentro da seção */
.traje-icon-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  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;
  display: block;
  margin: 0 auto;
}

/* Texto embaixo das imagens */
.traje-text {
  text-align: center;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.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;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ============================================
              RESPONSIVIDADE
              ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .traje-images-container {
    gap: 50px;
    margin-top: 100px;
    padding: 0 20px;
  }

  .traje-icon-img-wedding {
    width: 240px;
  }

  .traje-section-title {
    font-size: 1.6rem;
  }
}

/* Mobile grande */
@media (max-width: 768px) {
  .traje-images-container {
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .traje-icon-img-wedding {
    width: 200px;
  }

  .traje-section-title {
    font-size: 1.4rem;
  }

  .traje-icon-inline {
    margin-bottom: 20px;
  }
}

/* Mobile médio */
@media (max-width: 576px) {
  .traje-images-container {
    gap: 30px;
    margin-top: 70px;
    padding: 0 10px;
  }

  .traje-icon-img-wedding {
    width: 180px;
  }
  
  .traje-section {
    max-width: 280px;
  }
}

/* Mobile pequeno - empilha as imagens */
@media (max-width: 480px) {
  .traje-images-container {
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
    align-items: center;
    padding: 0 15px;
  }

  .traje-section {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .traje-icon-img-wedding {
    width: 220px;
  }

  .traje-section-title {
    font-size: 1.8rem;
  }
  
  .traje-icon-inline {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* Telas muito pequenas */
@media (max-width: 375px) {
  .traje-images-container {
    margin-top: 50px;
    gap: 40px;
    padding: 0 10px;
  }

  .traje-icon-img-wedding {
    width: 160px;
  }
  
  .traje-section-title {
    font-size: 1.6rem;
  }
}

/* ============================================
              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%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Cada bloco mantém exatamente os mesmos estilos */
.traje-bloco {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Separador sutil */
.traje-separador {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 20px;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  white-space: nowrap;
}

/* Ajustes específicos para mobile do separador */
@media (max-width: 768px) {
  .traje-separador {
    margin: 25px 0 15px;
    max-width: 450px;
  }

  .traje-separador span {
    font-size: 1.3rem;
    padding: 0 20px;
  }
  
  .traje-unificado-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .traje-separador {
    margin: 20px 0 10px;
    max-width: 350px;
  }
  
  .traje-separador span {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .traje-unificado-wrapper {
    padding: 0 10px;
  }
}

/* Ajuste adicional para garantir centralização em todos os tamanhos */
.traje-icon-img-wedding {
  max-width: 100%;
}

.traje-section,
.traje-icon-inline,
.traje-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}