/* ============================================
   CSS GLOBAL COMPARTILHADO - WEDDING DESTINATION LAB
   ============================================ */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.apoiadores__logo {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-smooth);
    margin: auto;
    border-radius: 20px;

}

:root {
  /* Cores Principais */
  --background: 0 0% 100%;
  --foreground: 0 0% 0%;
  --primary: 0 0% 0%;
  --primary-foreground: 0 0% 100%;
  --secondary: 82 40% 30%;
  --secondary-foreground: 0 0% 100%;
  --muted: 357 77% 49%;
  --muted-foreground: 0 0% 0%;
  --accent: 0 66% 86%;
  --accent-foreground: 0 0% 0%;
  --border: 0 0% 90%;
  
  /* Gradientes */
  --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(82, 107, 46, 0.5));
  --gradient-overlay: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  
  /* Sombras */
  --shadow-luxury: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-green: 0 8px 32px rgba(82, 107, 46, 0.2);
  --shadow-white: 0 8px 32px rgba(255, 255, 255, 0.3);
  
  /* Transições */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-refined: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Raio de borda */
  --radius: 0.5rem;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Kaisei Tokumin', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1;
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.625;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/* Animações */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.animate-scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-500 {
  animation-delay: 0.5s;
}

/* Utilitários */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Responsividade */
@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
  
  h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 5rem;
  }
}

/* ============================================
   HEADER - Navegação Principal (Padrão)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
  background: #fff;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: hsl(var(--background));
    flex-direction: column;
    padding: 2rem 0;
    transition: var(--transition-smooth);
  }
  
  .nav__menu.show {
    left: 0;
  }
}

.nav__item {
  list-style: none;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.nav__link:hover {
  color: hsl(var(--secondary));
}

.nav__link--active {
  color: hsl(var(--secondary));
}

.nav__link--cta {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
}

.nav__link--cta:hover {
  background-color: hsl(82, 40%, 35%);
  color: hsl(var(--secondary-foreground));
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background-color: hsl(var(--foreground));
  border-radius: 2px;
  transition: var(--transition-smooth);
}

