@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Pacifico&display=swap');

:root {
  --cream: #FDF6EC;
  --deep: #1C1209;
  --brown: #3D2B1F;
  /* Novas Cores de Marca (ludys.com.br) */
  --brand-brown: #5C3D2E;
  --brand-pink: #E38E9C;
  --brand-pink-light: #FFB9C4;
  --brand-teal: #a8d5ba;
  /* Modernized teal */
  --brand-cream-dark: #f0e6e1;
  --white-glass: rgba(255, 255, 255, 0.7);
  --brand-cream: #EEEADF;

  --primary: var(--brand-brown);
  --secondary: var(--brand-pink);
  --accent: var(--brand-pink);
  --teal: var(--brand-teal);
  --cream: var(--brand-cream);
  --dark: #2D1B14;
  --text-muted: #6B5E57;
  --border: #E5E0D8;
}

/* ━━━ CUSTOM SCROLLBAR ━━━ */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--brand-brown);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-pink);
  border: 3px solid var(--brand-brown);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-pink-light);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-pink) var(--brand-brown);
}

.font-brand {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
}

.label-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-pink);
  margin-bottom: 14px;
}

/* ━━━ GLOBAL LIQUID LUXURY OVERLAY ━━━ */
.liquid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  /* increased opacity */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.liquid-shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  /* above backgrounds but below content */
  background:
    radial-gradient(circle at 10% 20%, rgba(227, 142, 156, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(129, 216, 208, 0.08) 0%, transparent 40%);
  mix-blend-mode: soft-light;
  animation: shimmerMove 15s infinite alternate ease-in-out;
}

/* Liquid Drips (Caldas) */
.liquid-drip-container {
  position: absolute;
  top: -85px;
  /* Pull deeper into previous section */
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.drip-chocolate {
  fill: var(--brand-brown);
  /* Explicitly use brand brown */
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.drip-pink {
  fill: var(--brand-pink);
}

@keyframes shimmerMove {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.1) translate(30px, 30px);
  }
}

/* ━━━ PATTERNS & DIVIDERS ━━━ */
.stripe-bg {
  background: repeating-linear-gradient(90deg,
      var(--brand-teal) 0,
      var(--brand-teal) 20px,
      var(--brand-pink) 20px,
      var(--brand-pink) 21px,
      var(--brand-cream) 21px,
      var(--brand-cream) 41px,
      var(--brand-brown) 41px,
      var(--brand-brown) 42px);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 2px);
  height: 50px;
}

.wave-divider .shape-fill {
  fill: #fff;
}

.wave-divider.to-cream .shape-fill {
  fill: var(--brand-cream);
}

.wave-divider.to-white .shape-fill {
  fill: #fff;
}

.wave-divider.to-teal .shape-fill {
  fill: var(--brand-cream);
}

.wave-divider.to-brown .shape-fill {
  fill: var(--brand-brown);
}

.wave-divider.to-forwho .shape-fill {
  fill: #F7F3EE;
}

/* ━━━ HERO SECTION REFINEMENT ━━━ */
/* ━━━ HERO SECTION ━━━ */
.section-hero {
  background: var(--brand-teal);
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 200px 0 120px;
  /* Increased padding-top to prevent header overlap */
  margin-top: -100px;
  /* Pull background behind the floating header */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  /* Adjusted from 0.8 to look better with 2.5rem */
  color: var(--brand-brown);
  margin-bottom: 24px;
}

.hero-content h1 em {
  display: block;
  font-size: 0.8em;
  margin-top: 8px;
}

.hero-image-wrapper {
  position: relative;
  padding: 20px;
}

.hero-image-wrapper img,
.hero-image-wrapper video {
  width: 100%;
  border-radius: 40px;
  border: 10px solid #fff;
  transform: rotate(2deg);
  box-shadow: 0 20px 50px rgba(92, 61, 46, 0.1);
}

.hero-video {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--brand-pink);
  color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: 700;
  transform: rotate(-5deg);
  z-index: 11;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ━━━ HEADER PREMIUM (BOXED GLASS) ━━━ */
.main-header {
  position: sticky;
  top: 20px;
  left: 0;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 10px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.2);
  /* Maintain glass look */
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.header-logo {
  font-size: 24px;
  color: var(--brand-brown);
  transition: color 0.3s ease;
}

.main-header.scrolled .header-logo {
  color: var(--brand-brown);
  /* Keep original color */
}

.desktop-nav .nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-brown);
  transition: all 0.3s ease;
  position: relative;
}

.main-header.scrolled .nav-links a {
  color: var(--brand-brown);
  /* Keep original brown color */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-pink);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--brand-pink);
}

/* Menu Toggle (Hamburguer) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-brown);
  position: relative;
  transition: all 0.3s ease;
}

.main-header.scrolled .hamburger {
  background: var(--brand-brown);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: inherit;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hamburger Open States */
.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
  background: #fff;
}

.menu-open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
  background: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 18, 9, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav .nav-links {
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

.mobile-nav .nav-links a {
  font-size: 28px;
  color: #fff;
  font-family: 'Pacifico', cursive;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-header {
    border-radius: 50px;
    padding: 8px 0;
  }
}


.hero-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
}

/* Floating Elements */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: floatDeco 10s ease-in-out infinite;
  opacity: 0.4;
}

.hero-deco-1 {
  width: 300px;
  height: 300px;
  background: var(--brand-pink);
  top: -100px;
  right: -50px;
}

.hero-deco-2 {
  width: 200px;
  height: 200px;
  background: var(--brand-brown);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

@keyframes floatDeco {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, 30px);
  }
}

.hero-image-wrapper {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-image-wrapper {
    display: block;
    order: -1;
    margin-bottom: 20px;
    padding: 0;
  }

  .hero-image-wrapper img,
  .hero-image-wrapper video {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-content {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }

  .hero-cta-area {
    align-items: center;
  }

  .cta-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-hero h1 {
    font-size: 3rem;
  }
}

.hero-cta-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--brand-brown);
  opacity: 0.7;
  font-weight: 500;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-brown);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: fit-content;
  box-shadow: 0 10px 30px rgba(92, 61, 46, 0.2);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(92, 61, 46, 0.3);
  background: var(--dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 5;
}

/* ━━━ SECTION 3: SOLUTION (LIGHT PREMIUM) ━━━ */
.section-solution {
  position: relative;
  padding: 80px 0;
  /* Reduced from 140px */
  background: #fff;
  overflow: hidden;
  z-index: 1;
  /* Ensure explicit z-index for dividers */
}

/* Luxury Grain + Brand Pattern Overlay */
.section-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.brand-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle brand text watermark */
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' font-size='14' font-family='Montserrat, sans-serif' font-weight='800' fill='rgba(255,185,196,0.08)' text-anchor='middle' transform='rotate(-45 100 100)'%3ELUDY'S%3C/text%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* Mesh Gradient Motion */
.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  animation: mesh-motion 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--brand-pink);
  top: -10%;
  left: -5%;
  opacity: 0.4;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--brand-cream);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--brand-teal);
  top: 40%;
  left: 50%;
  opacity: 0.2;
}

@keyframes mesh-motion {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(100px, 50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 120px) scale(0.9);
  }

  100% {
    transform: translate(20px, -40px) scale(1.05);
  }
}

.section-solution .container {
  position: relative;
  z-index: 2;
}

.section-solution h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--brand-brown);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  perspective: 1200px;
}

/* Staggered Reveal Animation */
.benefit-card {
  opacity: 0;
  transform: translateY(30px);
  animation: card-reveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes card-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
}

.benefit-card {
  position: relative;
  background: linear-gradient(135deg, var(--brand-pink-light), var(--brand-pink));
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 32px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 40px rgba(227, 142, 156, 0.15);
  overflow: hidden;
  z-index: 2;
  color: #fff;
  /* White text for contrast */
}

/* Premium Shine effect restored and refined */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.70s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.benefit-card:hover::before {
  left: 150%;
}

/* Consolidated secondary styles */
.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(227, 142, 156, 0.25);
  /* Background remains the same gradient */
}

/* Cleaned up orphan code */

.benefit-title {
  position: relative;
  z-index: 3;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.benefit-desc {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.icon-box-caramel {
  background: rgba(92, 61, 46, 0.08);
}

.icon-box-dark {
  background: var(--brand-brown);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(92, 61, 46, 0.2);
}

/* ━━━ PROBLEM SECTION ━━━ */
.section-problem {
  position: relative;
  background: var(--brand-cream);
  /* Solid Cream */
  overflow: hidden;
  padding: 80px 0;
}

.problem-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 800;
  color: var(--brand-brown);
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.problem-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.problem-deco-1 {
  width: 400px;
  height: 400px;
  background: var(--brand-pink);
  top: -100px;
  left: -100px;
}

.problem-deco-2 {
  width: 300px;
  height: 300px;
  background: var(--brand-teal);
  bottom: -100px;
  right: -100px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.pain-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .pain-cards {
    grid-template-columns: 1fr !important;
  }

  .section-problem h2 {
    font-size: 2.4rem;
  }

  .problem-watermark {
    font-size: 100px;
    top: 10%;
    transform: translate(-50%, 0);
  }
}

.section-problem h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  /* Matches Hero */
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 800;
  color: var(--brand-brown);
}

.section-problem h2 em {
  font-style: normal;
  color: var(--brand-pink);
}

.problem-text p {
  margin-bottom: 24px;
}



.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: #fff;
  border-radius: 28px;
  /* Slightly softer */
  border: 1px solid rgba(92, 61, 46, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(92, 61, 46, 0.02);
}

.pain-card:hover {
  transform: translateY(-10px) scale(1.02);
  /* Changed from translateX to translateY for horizontal cards */
  background: #fff;
  box-shadow: 0 20px 40px rgba(92, 61, 46, 0.1);
  border-color: var(--brand-pink);
}

.pain-card-num {
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 80px;
  font-weight: 800;
  color: var(--brand-brown);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
}

.pain-card-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-pink);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.pain-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--brand-brown);
  font-weight: 500;
}

/* ━━━ SECTION 4: BRANDS ━━━ */
.section-brands {
  position: relative;
  padding: 80px 0;
  /* Reduced from 140px */
  background: #FAF7F2;
  overflow: hidden;
}

.brands-deco {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--brand-cream);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  top: 10%;
  right: -250px;
  z-index: 1;
}

.section-brands .container {
  position: relative;
  z-index: 2;
}

.brands-flex-container {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
}

.brands-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for a more compact left-side grid */
  gap: 16px;
}

.brands-content {
  flex: 1;
}

.brands-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--brand-brown);
}

@media (max-width: 991px) {
  .brands-flex-container {
    flex-direction: column; /* Text (first in HTML) stays on top */
    gap: 40px;
    text-align: center;
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    width: 100%;
  }
}

.brand-card {
  height: 120px;
  background: #fff;
  border: 1px solid rgba(92, 61, 46, 0.08);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(92, 61, 46, 0.02);
}

.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  /* Complex filter to turn WHITE (#FFFFFF) into Ludy's Pink (#E38E9C) */
  /* Logic: Invert to black -> sepia -> saturate -> hue-rotate to pink */
  filter: invert(72%) sepia(13%) saturate(1148%) hue-rotate(304deg) brightness(95%) contrast(88%);
  opacity: 0.8;
}

.brand-card:hover .brand-logo-img {
  opacity: 1;
  transform: scale(1.08);
  filter: invert(65%) sepia(20%) saturate(1500%) hue-rotate(310deg) brightness(100%) contrast(100%);
}

.brand-card.artisanal {
  font-weight: 800;
  color: var(--brand-brown);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.brand-card:hover {
  border-color: var(--brand-pink);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(227, 142, 156, 0.15);
}

.brand-card:hover .brand-logo {
  opacity: 1;
  transform: scale(1.05);
}

/* ━━━ SECTION 5: HOW IT WORKS ━━━ */
.section-how {
  position: relative;
  background: var(--brand-cream);
  padding: 80px 0;
  /* Reduced from 140px */
  overflow: hidden;
}

.how-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #fff;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  bottom: -100px;
  left: -100px;
  z-index: 1;
}

.process-wrapper {
  position: relative;
  margin-top: 80px;
}

.process-flow-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--brand-pink) 20%,
      var(--brand-pink) 80%,
      transparent);
  opacity: 0.2;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px;
  border-radius: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(92, 61, 46, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-indicator {
  position: relative;
  margin-bottom: 30px;
}

.section-how h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 800;
  color: var(--brand-brown);
}

.step-card .icon-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-pink);
  box-shadow: 0 8px 20px rgba(255, 185, 196, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: translateY(-15px);
  background: #fff;
  box-shadow: 0 30px 60px rgba(92, 61, 46, 0.1);
  border-color: var(--brand-pink);
}

.step-card:hover .icon-box {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--brand-brown);
  font-weight: 800;
}

.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.section-forwho {
  position: relative;
  padding: 120px 0;
  background-image: linear-gradient(rgba(247, 243, 238, 0.85), rgba(247, 243, 238, 0.85)), url('premium-acai.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.forwho-deco {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--brand-pink);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.section-forwho .container {
  position: relative;
  z-index: 2;
}

.section-forwho h2 {
  font-size: 3rem;
  margin-bottom: 60px;
}

.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  perspective: 1000px;
}

.forwho-card {
  background: #fff;
  border-radius: 40px;
  padding: 60px 48px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 45px rgba(92, 61, 46, 0.05);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.forwho-card.negative {
  background: var(--brand-cream);
  border-color: rgba(92, 61, 46, 0.05);
  opacity: 0.9;
}

.forwho-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-pink);
  margin-bottom: 20px;
}

.forwho-card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-brown);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.forwho-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
  /* Added slight gap for better balance */
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.forwho-card:hover .forwho-item {
  transform: translateX(10px);
}

.forwho-card:hover .forwho-item:nth-child(1) {
  transition-delay: 0.05s;
}

.forwho-card:hover .forwho-item:nth-child(2) {
  transition-delay: 0.1s;
}

.forwho-card:hover .forwho-item:nth-child(3) {
  transition-delay: 0.15s;
}

.forwho-card:hover .forwho-item:nth-child(4) {
  transition-delay: 0.2s;
}

.forwho-card:hover .forwho-item:nth-child(5) {
  transition-delay: 0.25s;
}

.icon-check {
  width: 20px;
  height: 20px;
  color: #059669;
  /* Slightly deeper vibrant green */
  margin-top: 3px;
  flex-shrink: 0;
}

.icon-cross {
  width: 20px;
  height: 20px;
  color: var(--brand-pink);
  margin-top: 3px;
  flex-shrink: 0;
}

.forwho-card:hover {
  transform: translateY(-15px) rotateX(2deg);
  box-shadow: 0 40px 80px rgba(92, 61, 46, 0.12);
  background: #fff;
}

.forwho-card.negative:hover {
  filter: grayscale(0.5);
}

@media (max-width: 960px) {
  .forwho-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .forwho-card {
    padding: 40px 24px;
  }
}

/* ━━━ AUTORIDADE ━━━ */
.section-authority {
  background: var(--brand-cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.authority-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 800;
  color: var(--brand-brown);
}

.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.video-bg-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2; 
  filter: grayscale(1) contrast(1.2); 
  object-fit: cover;
  transform: scale(1.1); 
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-cream);
  opacity: 0.8;
  z-index: 2;
}

.section-authority .container {
  position: relative;
  z-index: 3;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.authority-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fact-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(92, 61, 46, 0.04);
  transition: all 0.4s ease;
}

.fact-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--brand-pink);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}

.fact-desc strong {
  display: block;
  font-size: 18px;
  color: var(--brand-brown);
  margin-bottom: 4px;
}

.fact-desc span {
  font-size: 14px;
  color: var(--text-muted);
}

.fact-card.proof-youtube {
  background: linear-gradient(135deg, #fff 0%, #fff 70%, rgba(255, 0, 0, 0.02) 100%);
  border-right: 4px solid #FF0000;
}

.fact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(92, 61, 46, 0.08);
}

@media (max-width: 1024px) {
  .authority-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .fact-card {
    justify-content: center;
    text-align: left;
  }

  .authority-text h2 {
    font-size: 2.8rem;
  }
}

/* ━━━ COLLAB CAROUSEL ━━━ */
.collab-wrapper {
  margin-top: 80px;
  position: relative;
  z-index: 10;
  padding: 40px 0;
  width: 100%;
}

.collab-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.collab-track {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: max-content;
  margin: 0 auto;
}

.collab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.collab-img-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-pink);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.collab-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collab-item span {
  color: var(--brand-brown);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.collab-item:hover .collab-img-wrapper img {
  transform: scale(1.15);
}

.collab-item:hover {
  transform: translateY(-10px);
}

.desktop-hidden {
  display: none;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 2)); }
}

@media (max-width: 900px) {
  .desktop-hidden {
    display: flex;
  }
  
  .collab-track {
    justify-content: flex-start;
    animation: scroll 25s linear infinite;
    gap: 40px;
    padding: 0;
  }
  
  .collab-carousel:hover .collab-track {
    animation-play-state: paused;
  }

  .collab-img-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .collab-item span {
    font-size: 13px;
  }
}

/* ━━━ OBJEÇÕES ━━━ */
.section-obj {
  padding: 80px 0;
  /* Reduced from 140px */
  background: #fff;
  position: relative;
}

.section-title-center {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--brand-brown);
}

.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.obj-card {
  background: var(--brand-cream);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(92, 61, 46, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.obj-card h4 {
  font-size: 20px;
  color: var(--brand-brown);
  margin-bottom: 16px;
  font-weight: 800;
}

.obj-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.obj-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(92, 61, 46, 0.08);
  border-color: var(--brand-pink);
}

@media (max-width: 800px) {
  .obj-grid {
    grid-template-columns: 1fr;
  }

  .section-title-center {
    font-size: 2.2rem;
  }
}

/* ━━━ CTA ━━━ */
.section-cta {
  background: var(--brand-brown);
  padding: 80px 0;
  /* Reduced from 140px */
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.section-cta .stripe-bg {
  opacity: 0.05;
  pointer-events: none;
}

.section-cta .container {
  position: relative;
  z-index: 5;
}

.section-cta h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-big {
  background: var(--brand-pink);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  padding: 30px 80px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 15px 45px rgba(227, 142, 156, 0.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-big::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-big:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(227, 142, 156, 0.5), 0 0 40px rgba(255, 255, 255, 0.1);
  background: #fff;
  color: var(--brand-brown);
}

.cta-big:hover::before {
  opacity: 1;
}

.cta-guarantee {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .section-cta h2 {
    font-size: 2.5rem;
  }

  .cta-big {
    padding: 24px 40px;
    font-size: 18px;
    width: 90%;
  }
}

/* ━━━ FOOTER ━━━ */
.site-footer {
  position: relative;
  background: radial-gradient(circle at top right, #FFFFFF 0%, #FAF7F2 100%);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(92, 61, 46, 0.1);
  /* Slightly more defined border */
  color: var(--brand-brown);
  overflow: hidden;
}

/* Luxury Grain Overlay for Footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr auto auto;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 400;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(92, 61, 46, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-brown);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--brand-pink);
  color: #fff;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--brand-brown);
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(92, 61, 46, 0.05);
  padding-top: 40px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  opacity: 0.5;
  margin: 0;
}

/* Widget Asthros */
#custom-footer-widget-wrapper {
  padding: 0;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1;
}

#custom-footer-widget-wrapper .footer-developed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--brand-brown);
  opacity: 0.6;
}

g.header-logo {
  line-height: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.main-header.scrolled .logo-img {
  height: 40px;
}

#custom-footer-widget-wrapper .asthros-logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  vertical-align: middle;
}

#custom-footer-widget-wrapper .asthros-logo {
  height: 14px;
  width: auto;
  display: block;
  filter: brightness(0) opacity(0.8);
  transition: all 0.4s ease;
}

#custom-footer-widget-wrapper .asthros-logo-link:hover .asthros-logo {
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(180, 255, 0, 0.4));
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    align-items: center;
  }

  .footer-bottom-flex>* {
    width: 100%;
    justify-content: center !important;
    text-align: center;
  }

  #custom-footer-widget-wrapper .footer-developed {
    justify-content: center !important;
  }
}

.footer-brand {
  font-size: 24px;
  color: var(--brand-pink);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-info {
  font-size: 14px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.8;
}

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-info {
    text-align: center;
    margin-top: 20px;
  }

  .container {
    padding: 0 20px;
  }
}

/* ━━━ INSTITUTIONAL PAGES ━━━ */
.institutional-page {
  padding: 120px 0 100px;
  background: var(--brand-cream);
  min-height: 80vh;
}

.content-box {
  background: #fff;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(92, 61, 46, 0.05);
  color: var(--brand-brown);
  line-height: 1.8;
}

.content-box h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--brand-brown);
  font-weight: 800;
}

.content-box h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  font-weight: 700;
}

.content-box p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.back-home {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--brand-pink);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.back-home:hover {
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .content-box {
    padding: 30px;
  }
  .content-box h1 {
    font-size: 1.8rem;
  }
}

/* ━━━ ANIMATIONS ━━━ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.hero-image-wrapper,
.benefit-card,
.step,
.fact-row {
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* ━━━ MODAL SYSTEM ━━━ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 27, 20, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  width: 95%;
  max-width: 900px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 40px;
  background: #fff;
  border-bottom: 1px solid rgba(92, 61, 46, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--brand-brown);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
}

.close-modal {
  background: rgba(227, 142, 156, 0.1);
  color: var(--brand-pink);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--brand-pink);
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  height: 500px;
  width: 100%;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Contact Link Styles */
.footer-contact p {
  margin-bottom: 12px !important;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0.8;
}

.footer-contact a:hover {
  color: var(--brand-pink);
  transform: translateX(5px);
  opacity: 1;
}

.map-trigger {
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    border-radius: 24px;
  }
  .modal-header {
    padding: 15px 25px;
  }
  .modal-body {
    height: 400px;
  }
}