:root {
  --ink: #111318;
  --ink-soft: #2d3037;
  --paper: #fbfaf9;
  --paper-alt: #f2efed;
  --white: #ffffff;
  --gold: #bc845f;
  --peach: #e99e7c;
  --purple: #8a61c0;
  --blue: #5f9cc0;
  --pink: #c56eb0;
  --line: rgba(17, 19, 24, 0.12);
  --shadow: 0 24px 65px rgba(17, 19, 24, 0.16);
  --gradient: linear-gradient(
    115deg,
    var(--purple) 0%,
    var(--blue) 34%,
    var(--pink) 66%,
    var(--peach) 100%
  );
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
  --content-width: 1120px;
  --radius-lg: 32px;
  --radius-md: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 7%, rgba(138, 97, 192, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 27%, rgba(233, 158, 124, 0.12), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  font: inherit;
}

.ambient-glow {
  position: fixed;
  z-index: -1;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
  pointer-events: none;
}

.ambient-glow--one {
  top: 18%;
  left: -10rem;
  background: var(--purple);
}

.ambient-glow--two {
  right: -10rem;
  bottom: 10%;
  background: var(--peach);
}

.section,
.hero__content,
.footer {
  width: min(100% - 32px, var(--content-width));
  margin-inline: auto;
}

.section {
  padding-block: 76px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 14vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

h2 {
  font-size: clamp(2.25rem, 10vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

h3 {
  font-size: 1.65rem;
  line-height: 1;
}

p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.8;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-block: max(24px, env(safe-area-inset-top)) 48px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(251, 250, 249, 0.72)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(17, 19, 24, 0.035) 25%
    );
  content: "";
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero__logo {
  width: min(82vw, 385px);
  margin-bottom: 24px;
  mix-blend-mode: multiply;
}

.hero__slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__slogan span {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero__description {
  max-width: 580px;
  margin-top: 22px;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.scroll-link img {
  width: 18px;
  animation: scroll-bounce 1.7s ease-in-out infinite;
}

.scroll-link:hover {
  border-color: rgba(188, 132, 95, 0.5);
  box-shadow: 0 12px 30px rgba(17, 19, 24, 0.1);
  transform: translateY(-2px);
}

.section__heading {
  max-width: 760px;
}

.intro {
  display: grid;
  gap: 28px;
}

.intro > p {
  max-width: 590px;
}

.services {
  overflow: hidden;
}

.carousel {
  margin-top: 38px;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: min(138vw, 690px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(197, 110, 176, 0.55), transparent 34%),
    radial-gradient(circle at 28% 70%, rgba(95, 156, 192, 0.55), transparent 37%),
    linear-gradient(145deg, #1c1f26, #0d0e12);
  isolation: isolate;
}

.service-slide::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.service-slide > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 400ms ease, transform 1.2s ease;
}

.service-slide > img.is-loaded {
  opacity: 1;
}

.service-slide.is-active > img {
  transform: scale(1);
}

.service-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.04) 20%, rgba(10, 11, 14, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 11, 14, 0.18), transparent 70%);
}

.service-slide__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 26px;
  color: var(--white);
}

.service-slide__content span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-slide__content h3 {
  max-width: 290px;
  margin-bottom: 11px;
  font-size: clamp(2rem, 10vw, 4rem);
}

.service-slide__content p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
  line-height: 1.65;
}

.carousel__controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.carousel__button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel__button:hover {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.05);
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.2);
  cursor: pointer;
  transition: width 260ms ease, background 260ms ease;
}

.carousel__dot.is-active {
  width: 32px;
  background: var(--gradient);
}

.benefits__grid {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.benefits__grid article {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.benefits__grid article::before {
  position: absolute;
  top: -65px;
  right: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient);
  content: "";
  filter: blur(3px);
  opacity: 0.12;
}

.benefits__grid strong {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.benefits__grid h3 {
  margin-bottom: 12px;
}

.benefits__grid p {
  font-size: 0.87rem;
  line-height: 1.65;
}

.cta {
  padding-bottom: 96px;
}

.cta__panel {
  position: relative;
  padding: 34px 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(138, 97, 192, 0.35), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(233, 158, 124, 0.28), transparent 38%),
    var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
}

.cta__panel::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius-lg) - 10px);
  content: "";
  pointer-events: none;
}

.cta__panel h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: 16px;
}

.cta__panel > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}

.cta__panel .eyebrow {
  color: var(--peach);
}

.instagram-button {
  margin-top: 14px;
}

.whatsapp-button {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: var(--gradient);
  box-shadow: 0 16px 38px rgba(95, 156, 192, 0.22);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.whatsapp-button::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 19px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0));
  content: "";
}

.whatsapp-button:hover {
  box-shadow: 0 20px 45px rgba(138, 97, 192, 0.32);
  filter: saturate(1.12);
  transform: translateY(-3px);
}

.whatsapp-button img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.whatsapp-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.whatsapp-button small {
  margin-bottom: 2px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.8;
  text-transform: uppercase;
}

.whatsapp-button b {
  font-size: 1.25rem;
}

.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 22px max(94px, calc(26px + env(safe-area-inset-bottom)));
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer img {
  width: min(190px, 55vw);
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

.footer p {
  margin-bottom: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer small {
  color: rgba(17, 19, 24, 0.5);
  font-size: 0.67rem;
}

.floating-whatsapp {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 20;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 14px 32px rgba(17, 19, 24, 0.25);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (min-width: 560px) {
  .section,
  .hero__content,
  .footer {
    width: min(100% - 56px, var(--content-width));
  }

  .service-slide {
    min-height: 680px;
  }

  .service-slide__content,
  .cta__panel {
    padding: 42px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 840px) {
  .section {
    padding-block: 110px;
  }

  .hero__logo {
    width: 340px;
  }

  .intro {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .carousel {
    max-width: 680px;
    margin-inline: auto;
    margin-top: 54px;
  }

  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits__grid article:last-child {
    grid-column: auto;
  }

  .whatsapp-button {
    width: max-content;
    min-width: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
