/* 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: #c4a747; /* Dourado Principal */
  --secondary-color: rgb(26, 42, 74); /* Azul Marinho Profundo */
  --accent-color: #f8f4e9; /* Off-white quente */
  --text-dark: #2c3e50; /* Azul acinzentado para textos */
  --text-light: #6b7a8f; /* Azul mais claro para textos secundários */
  --bg-light: #fdfbf7; /* Fundo claro */
  --white: #ffffff;
  --shadow: rgba(26, 42, 74, 0.08); /* Sombra com azul marinho */
  --shadow-hover: rgba(196, 167, 71, 0.15); /* Sombra com dourado no hover */
  --watercolor-gold: #e5d4a6; /* Dourado suave */
  --watercolor-beige: #f0e6d2; /* Bege com toque dourado */
  --watercolor-navy: #2c3e5a; /* Azul marinho suave */
  --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 - Navy & Gold Style */
.navbar {
  background: transparent;
  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(196, 167, 71, 0.15);
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--secondary-color) !important;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(196, 167, 71, 0.2);
  transition: all 0.4s ease;
}

.nav-logo {
  width: 90px;
  height: 90px;
  filter: drop-shadow(2px 2px 4px rgba(196, 167, 71, 0.2));
}

.navbar.scrolled .navbar-brand {
  color: var(--white) !important;
  text-shadow: none;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--secondary-color) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300 !important;
  padding: 8px 16px !important;
  position: relative;
}

.nav-link.active {
  font-weight: 300 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: calc(100% - 32px);
  height: 2px;
  bottom: 4px;
  left: 16px;
  background-color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
}

.navbar.scrolled .nav-link {
  color: var(--white) !important;
  text-shadow: none;
}

.navbar.scrolled .nav-link::after {
  background-color: var(--primary-color);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Dropdown Styles */
.nav-link.dropdown-toggle::before {
  display: none !important;
}

.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(--secondary-color) !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;
}

.navbar.scrolled .nav-link.dropdown-toggle::after {
  border-top-color: var(--white) !important;
}

.nav-link.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0;
}

.dropdown:hover .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 25px rgba(26, 42, 74, 0.15);
  border-radius: 0;
  padding: 10px 0;
  background-color: var(--secondary-color);
  backdrop-filter: blur(10px);
  margin-top: 0;
  display: none;
}

.dropdown-item {
  padding: 10px 25px;
  color: var(--white) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  position: relative;
  background-color: transparent;
}

.dropdown-item.active {
  font-weight: 300 !important;
}

.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;
  left: 0;
  background-color: var(--primary-color);
  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;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
  background-color: transparent !important;
  color: var(--white) !important;
}

/* Toggler styles */
.navbar-toggler {
  border-color: var(--secondary-color);
  padding: 6px 10px;
  position: relative;
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--white);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(196, 167, 71, 0.25);
}

.navbar.scrolled .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(196, 167, 71, 0.25);
}

.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(--white);
  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;
}

.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after,
.navbar.scrolled .navbar-toggler-icon span {
  background-color: var(--white);
}

.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) {
  /* Ajuste para centralizar a logo */
  .navbar .container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .navbar-toggler {
    border-color: var(--secondary-color);
    margin-left: auto;
    z-index: 10;
  }
  
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 5;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    background-color: var(--secondary-color);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    background-color: var(--white);
  }

  .navbar.menu-open {
    background-color: var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(196, 167, 71, 0.15);
  }

  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 0px;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(196, 167, 71, 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;
  }

  .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;
    color: var(--white) !important;
  }

  .nav-link.active {
    font-weight: 300 !important;
  }

  .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;
    border-top-color: var(--white) !important;
  }

  .nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.show .dropdown-menu {
    display: block !important;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    right: 20px;
    left: auto;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    opacity: 1;
    width: calc(100% - 40px);
  }

  .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(--white) !important;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    background-color: transparent;
  }

  .dropdown-item.active {
    font-weight: 300 !important;
  }

  .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(--primary-color);
    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;
  }

  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active,
  .dropdown-item.active {
    background-color: transparent !important;
    color: var(--white) !important;
  }
}

@media (max-width: 576px) {
  .nav-logo {
    width: 50px;
    height: 50px;
  }
}

/* Hero Section */
.hero {
  background-color: transparent;
  background-image: url("../images/principal/fundo.png");
  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%;
}

.hero-image {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

.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;
  justify-content: center;
}

.brand-container {
  width: 100%;
  margin-top: 15vh;
  margin-bottom: 5vh;
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.brand-image-top {
  margin-top: 5vh;
  margin-bottom: 5vh;
  max-width: 400px;
  height: auto;
  display: inline-block;
}

.countdown-card {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 15px;
  overflow: hidden;
}

.couple-image {
  margin-top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Wedding Info antes do contador */
.wedding-info {
  margin-bottom: 2vh;
  text-align: center;
  padding: 1vh 0;
  display: block;
  width: 100%;
}

.wedding-date-info {
  display: flex;
  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(--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(26, 42, 74, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(196, 167, 71, 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(26, 42, 74, 0.3);
  border: 1px solid rgba(196, 167, 71, 0.2);
  margin-bottom: 8px;
}

.minus-sign {
  font-family: "Italianno", cursive;
  font-size: 28px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1;
  margin-right: 2px;
  transform: translateY(-2px);
}

.countdown-number {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--secondary-color);
  line-height: 1;
  transform: translateY(-2px);
}

.countdown-label {
  font-size: 10px;
  background-color: var(--primary-color);
  border-radius: 8px;
  letter-spacing: 1px;
  color: var(--secondary-color);
  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;
}

.countdown-item.negative .countdown-number-wrapper {
  background-color: #e5d4a6;
}

.countdown-item.negative .minus-sign,
.countdown-item.negative .countdown-number {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .countdown-card {
    width: 95%;
    max-width: 450px;
  }

  .brand-logo {
    width: min(40%, 280px);
  }

  .countdown-content {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .countdown-card {
    width: 98%;
    max-width: 400px;
  }

  .brand-logo {
    width: min(40%, 220px);
  }

  .countdown-content {
    padding: 20px 10px;
  }

  .brand-image-top {
    max-width: 320px;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
    margin-top: 0;
    background-image: none;
  }

  .hero-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-countdown {
    max-width: 900px;
  }

  .countdown-container {
    max-width: 500px;
    gap: 10px;
  }

  .countdown-number-wrapper {
    width: 75px;
    height: 75px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    width: 75px;
    height: 24px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .hero-image {
    width: 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: 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 {
    height: auto;
  }

  .hero-image {
    width: 100%;
  }

  .hero-countdown {
    max-width: 550px;
  }

  .countdown-container {
    max-width: 480px;
    gap: 8px;
    margin-bottom: 3vh;
  }

  .countdown-item {
    min-width: 65px;
  }

  .countdown-number-wrapper {
    width: 65px;
    height: 65px;
  }

  .minus-sign,
  .countdown-number {
    font-size: 24px;
  }

  .countdown-label {
    width: 65px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: unset;
  }

  .brand-container {
    margin-top: 6vh;
  }

  .hero-image {
    width: 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: 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) {
  .hero {
    height: auto;
    min-height: unset;
  }

  .hero-image {
    width: 100%;
  }

  .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) {
  .hero {
    height: auto;
    min-height: unset;
  }

  .hero-image {
    width: 100%;
  }

  .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) {
  .hero {
    height: auto;
    min-height: unset;
  }

  .hero-image {
    width: 100%;
  }

  .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 {
    height: auto;
    min-height: unset;
  }

  .hero-image {
    width: 100%;
  }

  .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 */
.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(--secondary-color);
  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;
}

.music-btn.playing {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(196, 167, 71, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(196, 167, 71, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(196, 167, 71, 0.3);
  }
}

@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 {
  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;
}

/* 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: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: var(--secondary-color);
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
}

.event-subtitle {
  text-align: center;
  color: var(--text-dark);
  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(--primary-color);
  color: var(--secondary-color);
  border: none;
}

.action-btn:hover .action-btn-text,
.action-btn:active .action-btn-text {
  font-weight: 300;
}

/* Responsividade Event Cards */
@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;
  }

  .event-card h3 {
    font-size: 2.2rem;
  }
}

@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;
  }
}

@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;
  }
}

@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;
  }

  .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;
  }
}

@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 */
.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(26, 42, 74, 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;
}

@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 */
.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;
}

.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%;
}

.story-photos {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

.photo-card {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(26, 42, 74, 0.15);
  transition: all 0.3s ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

@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%;
  }

  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .our-story {
    padding: 60px 0;
  }

  .story-photos {
    gap: 8px;
  }

  .photo-card {
    height: 190px;
  }

  .story-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .photo-card {
    height: 170px;
  }
}

@media (max-width: 380px) {
  .photo-card {
    height: 150px;
  }
}

@media (max-width: 320px) {
  .story-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card {
    height: 160px;
  }
}

/* Buttons */
.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(--secondary-color);
  box-shadow: 0 4px 15px rgba(26, 42, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196, 167, 71, 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(--secondary-color);
}

.btn-large {
  padding: 15px 45px;
  font-size: 1.1rem;
}

/* Messages Wall Section */
.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;
}

.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: var(--text-light);
  line-height: 1.6;
}

.messages-right-area {
  background-color: var(--secondary-color);
  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;
}

.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;
}

.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(26, 42, 74, 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%;
}

.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(26, 42, 74, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.carousel-arrow:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: -15px;
}

.carousel-arrow.next {
  right: -15px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.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: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(196, 167, 71, 0.5);
}

.wall-button {
  margin-top: 40px;
  padding: 14px 40px;
  border: 2px solid var(--primary-color);
  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: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(196, 167, 71, 0.2);
}

.message-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.message-form-container textarea,
.message-form-container input {
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.message-form-container .wall-button {
  margin: 0 auto;
  display: block;
}

.message-form-container textarea:focus,
.message-form-container input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 167, 71, 0.3);
  background: white;
}

.message-form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.messages-carousel.swiping {
  transition: none !important;
}

@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;
  }

  .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;
  }

  .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;
  }

  .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;
  }
}

@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 */
.custom-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(26, 42, 74, 0.15);
  z-index: 999999;
  border-left: 5px solid var(--primary-color);
  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: var(--primary-color);
}

.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;
  color: var(--primary-color);
}

.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;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@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;
}

@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(26, 42, 74, 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(26, 42, 74, 0.15);
  border: 1px solid rgba(196, 167, 71, 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(196, 167, 71, 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(196, 167, 71, 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(196, 167, 71, 0.1);
}

#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(196, 167, 71, 0.2);
}

#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(--secondary-color);
  border: 2px solid var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 167, 71, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.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(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(26, 42, 74, 0.2);
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(196, 167, 71, 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(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 167, 71, 0.2);
}

.success-message {
  text-align: center;
  padding: 50px 30px;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 90px;
  height: 90px;
  color: var(--primary-color);
  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;
}

@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;
  }
}

@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;
  }
}

select {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .rsvp-card {
    max-width: 550px;
  }
}

.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;
}

.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;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Feed Page */
.feed-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  background: var(--bg-light);
}

.feed-container {
  width: 700px;
  margin-top: 10vh;
  max-width: 100%;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 42, 74, 0.08);
  padding: 40px 35px;
  text-align: center;
}

.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;
}

.feed-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.4;
}

.feed-gallery-container {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  margin-bottom: 25px;
  border-radius: 8px;
}

.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: var(--primary-color);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.feed-gallery-container::-webkit-scrollbar-thumb:hover {
  background: #b3943a;
}

.feed-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 250px;
}

.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;
}

.feed-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feed-btn {
  background: var(--secondary-color);
  color: var(--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(26, 42, 74, 0.3);
  min-width: 180px;
}

.feed-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 167, 71, 0.4);
}

.feed-btn:active {
  transform: translateY(-1px);
}

.feed-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.upload-btn {
  background: var(--secondary-color);
  color: var(--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(26, 42, 74, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
}

.upload-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 167, 71, 0.4);
}

.upload-btn:active {
  transform: scale(0.97);
}

.upload-btn svg,
.upload-btn i {
  font-size: 1.1rem;
}

.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;
}

@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;
  }

  .feed-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    grid-auto-rows: auto;
  }

  .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;
  }

  .feed-gallery-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }

  .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;
  }
}

.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 42, 74, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.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(26, 42, 74, 0.8);
}

.close-modal {
  position: absolute;
  top: -50px;
  right: -10px;
  font-size: 40px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  font-weight: 300;
  line-height: 1;
}

.close-modal:hover {
  background: #b3943a;
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 1100px) {
  .feed-container {
    width: 850px;
    padding: 45px 35px;
  }
}

@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;
  }
}

@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;
  }
}

@media (max-width: 700px) {
  .feed-container {
    width: 550px;
    padding: 30px 20px;
  }

  .feed-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feed-gallery-item {
    height: 170px;
  }

  .feed-title {
    font-size: 2.3rem;
  }

  .feed-gallery-container {
    height: 420px;
  }
}

@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;
  }

  .feed-gallery-container::-webkit-scrollbar {
    width: 4px;
  }
}

@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;
  }
}

@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;
  }

  .feed-gallery-container::-webkit-scrollbar {
    width: 3px;
  }
}

@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;
}

.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;
  }
}

@media (orientation: portrait) and (max-width: 900px) {
  .feed-gallery-container {
    height: 60vh;
  }

  .feed-gallery-item {
    height: auto;
    aspect-ratio: 1/1;
  }
}

@media (min-height: 1000px) {
  .feed-gallery-container {
    height: 600px;
  }

  .feed-gallery-item {
    height: 200px;
  }
}

/* Dicas Page Styles */
.dicas-section {
  padding: 150px 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;
}

.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;
}

.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(26, 42, 74, 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(26, 42, 74, 0.3);
  border: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.img-circular:hover,
.img-circular-large:hover {
  transform: scale(1.02);
}

.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-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(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.text-center {
  text-align: center;
}

.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(196, 167, 71, 0.2);
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.dica-lista-item:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(196, 167, 71, 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(196, 167, 71, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.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;
}

.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 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 25px;
  padding: 12px 18px;
  background: rgba(196, 167, 71, 0.05);
  border-radius: 50px;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(196, 167, 71, 0.1);
  width: auto;
}

.dica-extra-icon {
  font-size: 1.1rem;
  opacity: 0.8;
  color: var(--primary-color);
}

@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;
  }
}

.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);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 968px) {
  .dica-card {
    gap: 0px;
  }

  .dica-imagem {
    flex: 0 0 250px;
  }

  .img-circular {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .dicas-section {
    padding: 150px 20px;
  }

  .dica-card {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 70px;
    text-align: center;
  }

  .dica-card .dica-imagem {
    order: 1;
    margin: 0 auto 15px;
    width: 220px;
    height: 220px;
  }

  .img-circular {
    width: 220px;
    height: 220px;
  }

  .dica-card .dica-conteudo {
    order: 2;
    width: 100%;
  }

  .dica-conteudo h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .dica-categoria,
  .dica-descricao {
    text-align: center;
  }

  .dica-categoria {
    margin-bottom: 15px;
    font-weight: 600;
  }

  .dica-descricao {
    margin-bottom: 0;
  }

  .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;
  }

  .scroll-reveal.left,
  .scroll-reveal.right,
  .scroll-reveal.fade-up {
    transform: translateY(30px);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.5rem;
  }

  .dica-conteudo h3 {
    font-size: 1.6rem;
  }

  .dica-imagem {
    width: 200px;
    height: 200px;
  }

  .img-circular {
    width: 200px;
    height: 200px;
  }

  .dica-card.destaque .dica-imagem.large {
    width: 240px;
    height: 240px;
  }

  .img-circular-large {
    width: 240px;
    height: 240px;
  }

  .dica-descricao {
    font-size: 0.95rem;
  }
}

/* Minimal Pages Style */
.minimal-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 120px 20px 80px;
  padding-top: 30vh;
}

.minimal-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.minimal-title {
  font-size: 3.5rem;
  margin: 10px 0 30px;
  color: var(--secondary-color);
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.minimal-icon {
  margin: 20px auto 40px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.minimal-icon img {
  width: 260px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.minimal-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 40px auto;
  max-width: 500px;
  text-align: justify;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.location-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  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-image:hover {
  opacity: 1;
  filter: brightness(1);
}

.map-link {
  font-size: 0.9rem;
  color: var(--secondary-color);
  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;
}

@media (max-width: 768px) {
  .map-image {
    width: 100px;
    height: 100px;
  }

  .minimal-title {
    font-size: 2.5rem;
  }

  .minimal-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
  }

  .minimal-text {
    font-size: 0.9rem;
  }

  .minimal-page {
    padding-top: 25vh;
  }
}

@media (max-width: 480px) {
  .map-image {
    width: 90px;
    height: 90px;
  }

  .minimal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .minimal-page {
    padding-top: 20vh;
  }
}

/* Traje Page 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-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;
}

.traje-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  animation: none;
  opacity: 1;
}

.traje-icon-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 30px;
}

.traje-icon-img-wedding {
  width: 280px;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  vertical-align: middle;
}

.traje-icon-img-wedding:hover {
  transform: scale(1.02);
}

.traje-text {
  text-align: center;
  width: 100%;
}

.traje-section-title {
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-style: italic;
}

.traje-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0;
}

.minimal-note {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
  font-style: italic;
}

@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;
  }
}

@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%;
  }
}

@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;
  }
}

@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;
  }
}

@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;
  }
}

.traje-unificado-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.traje-bloco {
  width: 100%;
}

.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;
}

@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;
  }
}
