/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Design System */
:root {
  /* Colors */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 35%, 15%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(215, 65%, 25%);
  --primary-foreground: hsl(45, 100%, 96%);
  --secondary: hsl(45, 30%, 96%);
  --muted: hsl(210, 15%, 93%);
  --muted-foreground: hsl(215, 15%, 45%);
  --gold: hsl(42, 85%, 55%);
  --gold-light: hsl(45, 70%, 75%);
  --gold-dark: hsl(38, 80%, 40%);
  --nature: hsl(155, 45%, 35%);
  --blue-deep: hsl(215, 65%, 18%);
  --blue-medium: hsl(215, 55%, 35%);
  --border: hsl(210, 25%, 88%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(42, 85%, 55%), hsl(45, 70%, 75%));
  --gradient-ocean: linear-gradient(180deg, hsl(215, 65%, 25%), hsl(215, 65%, 18%));
  --gradient-hero: linear-gradient(to bottom, transparent 0%, hsla(215, 65%, 15%, 0.7) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -2px hsla(215, 35%, 15%, 0.08);
  --shadow-luxury: 0 10px 40px -10px hsla(42, 75%, 50%, 0.25);
  --shadow-elevated: 0 20px 60px -15px hsla(215, 35%, 15%, 0.15);
  
  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Raleway', sans-serif;
  
  /* Spacing */
  --radius: 0.5rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.bg-gradient-ocean {
  background: var(--gradient-ocean);
}

/* ================================
   HEADER
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: hsla(215, 65%, 25%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-elevated);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-foreground);
  font-weight: bold;
}

.logo-subtitle {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: bold;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: hsla(45, 100%, 96%, 0.9);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.btn-cta {
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  box-shadow: var(--shadow-luxury);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  color: var(--primary-foreground);
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: hsla(215, 65%, 25%, 0.98);
  backdrop-filter: blur(12px);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: hsla(45, 100%, 96%, 0.9);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-cta {
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ================================
   HERO CAROUSEL
   ================================ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content-inner {
  max-width: 56rem;
  padding: 0 1.5rem;
}

.hero-line {
  width: 6rem;
  height: 2px;
  background: var(--gradient-gold);
  margin: 0 auto 2rem;
  transform: scaleX(0);
  transition: transform 0.6s ease 0.5s;
}

.hero-slide.active ~ .hero-content .hero-line {
  transform: scaleX(1);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.hero-slide.active ~ .hero-content .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: hsla(45, 100%, 96%, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
}

.hero-slide.active ~ .hero-content .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.7s, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-slide.active ~ .hero-content .hero-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn:hover {
  box-shadow: var(--shadow-luxury);
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: hsla(45, 100%, 96%, 0.7);
  padding: 0.75rem;
  transition: color 0.3s ease;
  display: none;
}

@media (min-width: 768px) {
  .hero-nav {
    display: block;
  }
}

.hero-nav:hover {
  color: var(--gold);
}

.hero-nav.prev {
  left: 1.5rem;
}

.hero-nav.next {
  right: 1.5rem;
}

.hero-nav svg {
  width: 48px;
  height: 48px;
  stroke-width: 1;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: hsla(45, 100%, 96%, 0.4);
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  width: 2.5rem;
}

.hero-dot:hover {
  background: hsla(45, 100%, 96%, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
  color: hsla(45, 100%, 96%, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
  padding: 6rem 0;
  background: var(--secondary);
}

@media (min-width: 768px) {
  .about {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-label {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--foreground);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--foreground);
}

.about-line {
  width: 8rem;
  height: 2px;
  background: var(--gradient-gold);
  margin-top: 2.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: hsla(215, 65%, 25%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color 0.5s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .gallery {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--foreground);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(215, 65%, 25%, 0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-tag {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-foreground);
  margin-top: 0.25rem;
}

.gallery-plus {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  /*background: hsla(42, 85%, 55%, 0.2);*/
  background: hsl(42deg 85% 55% / 62%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-plus {
  opacity: 1;
}

.gallery-plus span {
  color: var(--primary-foreground);
  font-size: 1.25rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: hsla(215, 65%, 25%, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
}

.lightbox-title {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-foreground);
  text-align: center;
}

/* ================================
   LOCATION SECTION
   ================================ */
.location {
  padding: 6rem 0;
  background: var(--secondary);
}

@media (min-width: 768px) {
  .location {
    padding: 8rem 0;
  }
}

.location-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.location-info {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.location-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.location-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.location-address {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--secondary);
}

.highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.highlight-item span {
  color: var(--foreground);
}

.location-btn {
  margin-top: auto;
  display: block;
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.location-btn:hover {
  box-shadow: var(--shadow-luxury);
  transform: translateY(-2px);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.location-map:hover iframe {
  filter: grayscale(0%);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
  padding: 6rem 0;
  background: var(--gradient-ocean);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
}

.contact-decor-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: hsla(42, 85%, 55%, 0.05);
  border-radius: 9999px;
  filter: blur(80px);
}

.contact-decor-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: hsla(155, 45%, 35%, 0.05);
  border-radius: 9999px;
  filter: blur(80px);
}

.contact .container {
  position: relative;
  z-index: 10;
}

.contact .section-title {
  color: var(--primary-foreground);
}

.contact .section-desc {
  color: hsla(45, 100%, 96%, 0.7);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: hsla(42, 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.contact-info-label {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-info-value {
  color: var(--primary-foreground);
  word-break: break-word;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, hsla(42, 85%, 55%, 0.5), transparent);
  margin: 1rem 0;
}

.contact-note {
  color: hsla(45, 100%, 96%, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  color: hsla(45, 100%, 96%, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: hsla(45, 100%, 96%, 0.1);
  border: 1px solid hsla(45, 100%, 96%, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsla(45, 100%, 96%, 0.4);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.form-submit:hover {
  box-shadow: var(--shadow-luxury);
  transform: translateY(-2px);
}

.form-submit svg {
  width: 20px;
  height: 20px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  z-index: 3000;

  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  padding: 4rem 0;
  background: var(--blue-deep);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand .logo-title {
  font-size: 1.75rem;
}

.footer-brand-text {
  color: hsla(45, 100%, 96%, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsla(45, 100%, 96%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(45, 100%, 96%, 0.6);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: hsla(45, 100%, 96%, 0.6);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: hsla(45, 100%, 96%, 0.6);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(45, 100%, 96%, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: hsla(45, 100%, 96%, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: hsla(45, 100%, 96%, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ================================
   ANIMATIONS
   ================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}


/* ================================
   WHATSAPP FLOAT BUTTON
   ================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}