@charset "UTF-8";
/* ============================================================
   Sandbox & Health — Paleta
   Exportada desde Coolors: https://coolors.co/756f49-d9a972-d6be9c-b78a63-f4eedc
   ============================================================ */
/* Colores base */
/* Gradientes predefinidos (por si los necesitas para fondos decorativos) */
/* ============================================================
   SANDBOX & HEALTH — STYLES
   Paleta: eggshell / tan / sandy-clay / camel / dusty-olive
   ============================================================ */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Paleta base */
  --eggshell: #F4EEDC; /* fondo principal (crema) */
  --tan: #D6BE9C; /* tono suave */
  --sandy-clay: #D9A972; /* acento cálido */
  --camel: #B78A63; /* acento profundo */
  --dusty-olive: #756F49; /* dark primario */
  /* Derivados */
  --bg: var(--eggshell);
  --bg-deep: #EBE3CA; /* crema más profunda para contraste */
  --ink: #1F1D12; /* tinta oscura (olivo casi negro) */
  --ink-soft: #3A362A;
  --line: rgba(31, 29, 18, .14);
  /* Tipografía */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', system-ui, sans-serif;
  /* Layout */
  --radius: 22px;
  --container: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::-moz-selection {
  background: var(--camel);
  color: var(--eggshell);
}

::selection {
  background: var(--camel);
  color: var(--eggshell);
}

/* Grano sutil sobre toda la página */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}

main, header, footer {
  position: relative;
  z-index: 2;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(244, 238, 220, 0.85);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.logo {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo__amp {
  font-style: italic;
  color: var(--camel);
  font-weight: 400;
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  background: var(--dusty-olive);
  color: var(--eggshell);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--camel);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .nav__links {
    display: none;
  }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(900px 500px at 85% 15%, rgba(217, 169, 114, 0.45), transparent 60%), radial-gradient(700px 600px at 10% 90%, rgba(117, 111, 73, 0.18), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-olive);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--dusty-olive);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}

.hero h1 .ital {
  font-style: italic;
  font-weight: 300;
  color: var(--dusty-olive);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

.hero h1 .accent {
  color: var(--camel);
}

.hero__sub {
  margin-top: 32px;
  font-size: clamp(16px, 1.25vw, 19px);
  max-width: 520px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.35s var(--ease);
}

.btn--primary {
  background: var(--dusty-olive);
  color: var(--eggshell);
}

.btn--primary:hover {
  background: var(--camel);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(183, 138, 99, 0.65);
}

.btn--ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--eggshell);
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   HERO VISUAL
   ============================================================ */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--tan);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(117, 111, 73, 0.4), 0 12px 30px -12px rgba(0, 0, 0, 0.12);
}

/* Placeholder visible mientras no hay imagen real.
   Cuando pongas <img> dentro, cubrirá este pseudo-elemento. */
.hero__visual::before {
  content: "assets/images/hero.jpg";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: rgba(117, 111, 73, 0.5);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(117, 111, 73, 0.1), rgba(217, 169, 114, 0.08));
  pointer-events: none;
}

.hero__visual img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.hero__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--camel);
  color: var(--eggshell);
  border-radius: 999px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.2;
  padding: 16px;
  animation: spin 22s linear infinite;
  box-shadow: 0 20px 40px -20px rgba(183, 138, 99, 0.7);
  z-index: 2;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero {
    padding-top: 120px;
  }
}
/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--dusty-olive);
  color: var(--eggshell);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.marquee__track span::after {
  content: "✦";
  color: var(--sandy-clay);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  max-width: 780px;
  margin-bottom: 80px;
}

.section-head__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--camel);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--camel);
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 40, "opsz" 144;
}

.section-head h2 .ital {
  font-style: italic;
  color: var(--dusty-olive);
  font-weight: 300;
}

.section-head p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.6;
}

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--eggshell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(117, 111, 73, 0.3);
}

.problem-card__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--camel);
  line-height: 1;
  margin-bottom: 28px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.problem-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 30;
}

.problem-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.problem-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--camel), var(--sandy-clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.problem-card:hover .problem-card__line {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   SERVICES
   ============================================================ */
.services__list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: padding 0.5s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dusty-olive);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}

.service-row:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.service-row:hover {
  padding-left: 24px;
  padding-right: 24px;
}

.service-row:hover .service-row__num,
.service-row:hover .service-row__title,
.service-row:hover .service-row__arrow {
  color: var(--eggshell);
}

.service-row > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--ease);
}

.service-row__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--camel);
  font-weight: 400;
}

.service-row__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 30;
}

.service-row__title em {
  font-style: italic;
  opacity: 0.6;
  font-size: 0.7em;
}

.service-row__arrow {
  font-size: 28px;
  color: var(--ink);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.service-row:hover .service-row__arrow {
  transform: rotate(-45deg);
}

@media (max-width: 700px) {
  .service-row {
    grid-template-columns: 50px 1fr auto;
    gap: 20px;
    padding: 28px 0;
  }
}
/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  background: var(--dusty-olive);
  color: var(--eggshell);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 20% 30%, rgba(183, 138, 99, 0.22), transparent 60%), radial-gradient(700px 500px at 90% 80%, rgba(217, 169, 114, 0.16), transparent 60%);
  pointer-events: none;
}

.approach .section-head h2 {
  color: var(--eggshell);
}

.approach .section-head h2 .ital {
  color: var(--sandy-clay);
}

.approach .section-head__eyebrow {
  color: var(--sandy-clay);
}

.approach .section-head__eyebrow::before {
  background: var(--sandy-clay);
}

.approach .section-head p {
  color: rgba(244, 238, 220, 0.75);
}

.levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.level {
  border: 1px solid rgba(244, 238, 220, 0.2);
  border-radius: var(--radius);
  padding: 44px 36px;
  background: rgba(244, 238, 220, 0.04);
  backdrop-filter: blur(4px);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}

.level:hover {
  transform: translateY(-6px);
  background: rgba(244, 238, 220, 0.08);
}

.level__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 28px;
  box-shadow: 0 0 0 6px rgba(244, 238, 220, 0.08);
}

.level--1 .level__dot {
  background: var(--sandy-clay);
}

.level--2 .level__dot {
  background: var(--camel);
}

.level--3 .level__dot {
  background: var(--tan);
}

.level h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 14px;
  font-variation-settings: "SOFT" 50;
}

.level h3 .ital {
  font-style: italic;
  color: var(--sandy-clay);
}

.level p {
  font-size: 15px;
  color: rgba(244, 238, 220, 0.78);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .levels {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-deep);
}

.swiper {
  padding: 20px 8px 70px;
  overflow: visible;
}

.swiper-slide {
  background: var(--eggshell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 44px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.testimonial__quote {
  font-family: var(--display);
  font-weight: 350;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30;
}

.testimonial__quote::before {
  content: "“";
  font-size: 80px;
  line-height: 0.4;
  color: var(--camel);
  display: block;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial__author {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tan);
  border: 1px solid var(--line);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial__role {
  font-size: 13px;
  color: var(--ink-soft);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: var(--ink);
  opacity: 0.25;
  transition: all 0.3s var(--ease);
}

.swiper-pagination-bullet-active {
  background: var(--camel);
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
}

.cta__inner {
  background: var(--ink);
  color: var(--eggshell);
  border-radius: var(--radius);
  padding: clamp(50px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta__inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 169, 114, 0.45), transparent 60%);
  pointer-events: none;
}

.cta__inner > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 40, "opsz" 144;
}

.cta h2 .ital {
  font-style: italic;
  color: var(--sandy-clay);
  font-weight: 300;
}

.cta p {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(244, 238, 220, 0.72);
  max-width: 480px;
}

.cta__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta .btn--primary {
  background: var(--camel);
}

.cta .btn--primary:hover {
  background: var(--sandy-clay);
  color: var(--ink);
}

.cta .btn--ghost {
  border-color: rgba(244, 238, 220, 0.5);
  color: var(--eggshell);
}

.cta .btn--ghost:hover {
  background: var(--eggshell);
  color: var(--ink);
  border-color: var(--eggshell);
}

.qr-card {
  background: var(--eggshell);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  color: var(--ink);
}

.qr-card__box {
  width: 100%;
  aspect-ratio: 1;
  background: repeating-linear-gradient(0deg, var(--ink) 0 8px, transparent 8px 16px), repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px);
  background-color: var(--eggshell);
  border-radius: 8px;
  margin-bottom: 18px;
  position: relative;
  border: 1px solid var(--line);
}

.qr-card__box::after {
  content: "QR";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eggshell);
  font-family: var(--display);
  font-style: italic;
  color: rgba(0, 0, 0, 0.4);
  margin: 30%;
  border-radius: 8px;
}

.qr-card__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer__brand {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.footer__brand .ital {
  font-style: italic;
  color: var(--dusty-olive);
}

.footer__about {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 320px;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 22px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--dusty-olive);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
/* ============================================================
   SCROLL REVEAL HELPERS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-line {
  overflow: visible;
  display: block;
}

.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--camel);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease);
  }
}/*# sourceMappingURL=styles.css.map */