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

:root {
  --cream: #FDF6EC;
  --deep: #1C1209;
  --brown: #3D2B1F;

  --brand-brown: #5C3D2E;
  --brand-pink: #E38E9C;
  --brand-pink-light: #FFB9C4;
  --brand-teal: #a8d5ba;

  --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;
}

::-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);
}

* {
  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;
}

.liquid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;

  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;

  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-drip-container {
  position: absolute;
  top: -85px;

  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.drip-chocolate {
  fill: var(--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);
  }
}

.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;
}

.section-hero {
  background: var(--brand-teal);
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 200px 0 120px;

  margin-top: -100px;

}

.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;

  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;
}

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

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

.main-header {
  position: sticky;
  top: 20px;
  left: 0;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 100000 !important; 
  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);

  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);

}

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

.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);

}

.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 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  z-index: 100002 !important; 
}

.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;
}

.menu-toggle.menu-open {
  background: transparent !important;
  border-radius: 0;
}

.menu-toggle.menu-open .hamburger {
  background: transparent !important;
}

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

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

body.menu-active .header-logo img,
body.menu-active .custom-logo-link img {
  filter: brightness(0) invert(1) !important;
  transition: filter 0.3s ease;
}

body.menu-active .main-header {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(28, 18, 9, 0.9) !important; 
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99999 !important; 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
  opacity: 1 !important;
  pointer-events: all !important;
  visibility: visible !important;
}

.mobile-nav {
  width: 100%;
}

.mobile-nav .nav-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 30px !important;
  width: 100%;
}

.mobile-nav .nav-links li {
  list-style: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-nav .nav-links a {
  display: block;
  font-size: 32px;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Pacifico', cursive;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@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;
}

.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: 20px;
  }

  .section-hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-image-wrapper {
    display: inline-block;
    order: -1;
    margin: 0 auto 20px auto;
    padding: 0;
    max-width: 350px;
    width: 85%;
  }

  .hero-image-wrapper img,
  .hero-image-wrapper video {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .hero-badge {
    bottom: -10px;
    left: -10px;
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .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-solution {
  position: relative;
  padding: 80px 0;

  background: #FAE8D4;
  overflow: hidden;
  z-index: 1;

}

.section-solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/textura.webp') center/cover repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
}

.brand-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  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 {
  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: 3;
}

.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;
}

.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;

}

.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%;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(227, 142, 156, 0.25);

}

.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);
}

.section-problem {
  position: relative;
  background: var(--brand-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: 80px;
    top: 5%;
    transform: translate(-50%, 0);
    max-width: 100vw;
    overflow: hidden;
  }
}

.section-problem h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;

  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;
}

.problem-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.problem-img {
  width: 100%;
  max-width: 100%;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(92, 61, 46, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
  border: 10px solid #fff;
}

.problem-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.pain-bullets {
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.pain-bullet {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 20px;
  border: 1px solid rgba(92, 61, 46, 0.08);
  box-shadow: 0 4px 15px rgba(92, 61, 46, 0.02);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 300px;
}

.pain-bullet:hover {
  transform: translateY(-8px);
  border-color: var(--brand-pink);
  box-shadow: 0 10px 25px rgba(227, 142, 156, 0.15);
}

.pain-bullet-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-pink-light);
  color: var(--brand-brown);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-bullet p {
  margin: 0;
  font-size: 15px;
  color: var(--brand-brown);
  font-weight: 600;
  line-height: 1.4;
}

.section-brands {
  position: relative;
  padding: 80px 0;

  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-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.brands-marquee-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.brands-marquee {
  display: flex;
  gap: 30px;
  animation: marquee-b2b 40s linear infinite;
  width: max-content;
}

@keyframes marquee-b2b {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logo-box {
  background: #fff;
  border: 1px solid rgba(92, 61, 46, 0.08);
  border-radius: 20px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 180px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand-logo-box:hover {
  transform: none;
  box-shadow: none;
}

.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; 
    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;

  filter: grayscale(1) brightness(0.65) contrast(1.2);
  opacity: 0.85;
}

.brand-logo-img.logo-gray {
  filter: grayscale(1) brightness(1.7) contrast(1.1);
}

.brand-card:hover .brand-logo-img {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0) brightness(1) contrast(1);
}}

.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-how {
  position: relative;
  background: var(--brand-cream);
  padding: 80px 0;

  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: #F7F3EE;
  overflow: hidden;
}

.forwho-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.forwho-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 243, 238, 0.85);
  z-index: 1;
  pointer-events: none;
}

.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: 2;
}

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

.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;

  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;

  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;
  }
}

.section-authority {
  background: var(--brand-cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.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);
}


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

.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-wrapper {
  margin-top: 80px;
  position: relative;
  z-index: 10;
  padding: 40px 0;
  width: 100%;
}

.collab-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.collab-track {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  width: max-content;
  animation: scroll 40s linear infinite;
}



.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: 280px;
  height: 240px;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
}

.collab-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  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 removido pois o slider agora é unificado */

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

@media (max-width: 900px) {
  .collab-track {
    animation: scroll 25s linear infinite;
    gap: 20px;
    padding: 0;
  }

  .collab-img-wrapper {
    width: 180px;
    height: 150px;
    border-radius: 20px;
  }

  .collab-item span {
    font-size: 13px;
  }
}

.section-obj {
  padding: 80px 0;

  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;
  }
}

.section-cta {
  background: var(--brand-brown);
  padding: 80px 0;

  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%;
  }
}

.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);

  color: var(--brand-brown);
  overflow: hidden;
}

.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;
}

#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;
}

@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-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;
  }
}

@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-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 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;
  }
}