:root {
  --offwhite: #F2F1FD;
  --mist: #CAABE8;
  --medium: #9E6FDA;
  --graphite: #7097E8;
  --deep: #5645A9;
  --black: #3E3AA1;
  --ink: #2B2770;
  --panel: rgba(86, 69, 169, 0.34);
  --panel-strong: rgba(86, 69, 169, 0.56);
  --line: rgba(202, 171, 232, 0.14);
  --line-strong: rgba(202, 171, 232, 0.25);
  --whatsapp: #25D366;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--graphite) var(--black);
}

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--black); }
body::-webkit-scrollbar-thumb {
  background: var(--graphite);
  border-radius: 999px;
  border: 2px solid var(--black);
}
body::-webkit-scrollbar-thumb:hover { background: var(--medium); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(43, 39, 112, 0.82);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(202, 171, 232, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(43, 39, 112, 0.95);
  border-color: rgba(202, 171, 232, 0.14);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 32px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 112px;
  height: 72px;
  padding: 2px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.35px;
  color: var(--mist);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--offwhite);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--offwhite); }
.nav-links a:hover::after { width: 100%; }

.nav-whatsapp {
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #7097E8, #5645A9);
  border: 1px solid rgba(242, 241, 253, 0.16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(242, 241, 253, 0.1);
  color: var(--offwhite);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15px;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: none;
  display: block;
}

.nav-whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 241, 253, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(242, 241, 253, 0.16);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(86, 69, 169, 0.35);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--offwhite);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 88px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 18%, rgba(158, 111, 218, 0.12), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(112, 151, 232, 0.1), transparent 32%),
    linear-gradient(180deg, #2B2770 0%, #312D7C 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(202, 171, 232, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 171, 232, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 85%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--medium);
  margin-bottom: 26px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--medium);
}

.eyebrow-center { justify-content: center; }

.hero h1 {
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.6px;
  color: var(--offwhite);
  margin-bottom: 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--mist);
  font-weight: 600;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--medium);
  max-width: 520px;
  margin-bottom: 40px;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  background: var(--offwhite);
  color: var(--black);
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 1px solid var(--offwhite);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: var(--mist);
  border-color: var(--mist);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--mist);
  border-color: var(--mist);
  color: var(--black);
}

.link-underline {
  font-size: 14px;
  font-weight: 600;
  color: var(--mist);
  border-bottom: 1px solid var(--graphite);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.link-underline:hover { color: var(--offwhite); border-color: var(--offwhite); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--deep), var(--graphite));
  border: 1px solid rgba(202, 171, 232, 0.14);
  box-shadow: 0 0 0 1px rgba(202, 171, 232, 0.14), 0 0 34px rgba(202, 171, 232, 0.22), 0 0 72px rgba(202, 171, 232, 0.12), 0 45px 90px rgba(0, 0, 0, 0.42), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-visual::after,
.about-visual::after,
.contact-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(43, 39, 112, 0.36));
  pointer-events: none;
}

.hero-visual img,
.about-visual img,
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(62, 58, 161, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(202, 171, 232, 0.16);
}

.hero-stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--offwhite);
  line-height: 1;
}
.hero-stat-card .lbl { font-size: 12px; color: var(--mist); margin-top: 5px; }

/* ---------- SHARED ---------- */
section { padding: 120px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2,
.about-text h2,
.contact h2,
.faq-intro h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.14;
  color: var(--offwhite);
}
.section-head h2 { margin-top: 12px; }
.section-head p,
.faq-intro > p {
  font-size: 16px;
  color: var(--medium);
  margin-top: 18px;
  max-width: 560px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- SERVICES ---------- */
.services {
  background:
    radial-gradient(circle at 16% 22%, rgba(112, 151, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #302C79 0%, #2B2770 100%);
  color: var(--offwhite);
  border-top: 1px solid rgba(202, 171, 232, 0.06);
  border-bottom: 1px solid rgba(202, 171, 232, 0.06);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
  align-items: start;
}

.service-card {
  min-height: 252px;
  padding: 22px 22px 18px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(86, 69, 169, 0.5), rgba(62, 58, 161, 0.74) 68%),
    rgba(62, 58, 161, 0.82);
  border: 1px solid rgba(202, 171, 232, 0.14);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.025), 0 18px 42px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.42s cubic-bezier(.2,.7,.2,1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 20%) var(--my, 0%), rgba(202, 171, 232, 0.11), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card::after {
  content: none;
}

.service-top-shine {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 30%;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(-140%, 0, 0);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(202, 171, 232, 0.08) 14%,
    rgba(202, 171, 232, 0.34) 34%,
    rgba(242, 241, 253, 0.92) 47%,
    #F2F1FD 52%,
    rgba(242, 241, 253, 0.82) 58%,
    rgba(202, 171, 232, 0.18) 78%,
    transparent 100%
  );
  filter:
    drop-shadow(0 0 3px rgba(242, 241, 253, 0.95))
    drop-shadow(0 0 8px rgba(202, 171, 232, 0.58));
  will-change: transform, opacity;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 171, 232, 0.28);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.04), 0 24px 54px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }



.service-card-offset { margin-top: 26px; }

.service-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(112, 151, 232, 0.5), rgba(86, 69, 169, 0.55));
  border: 1px solid rgba(202, 171, 232, 0.1);
  color: var(--mist);
  margin-bottom: 14px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  border-color: rgba(202, 171, 232, 0.22);
  background: linear-gradient(145deg, rgba(112, 151, 232, 0.68), rgba(86, 69, 169, 0.72));
}

.service-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--medium);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.15px;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--mist);
  min-height: 62px;
}

.service-divider {
  height: 1px;
  background: rgba(202, 171, 232, 0.14);
  margin: 15px 0 11px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--medium);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.service-link span { transition: transform 0.25s ease; }
.service-link:hover { color: var(--offwhite); }
.service-link:hover span { transform: translateX(4px); }
.services-cta { text-align: center; margin-top: 76px; }

/* ---------- ABOUT ---------- */
.about {
  background:
    radial-gradient(circle at 82% 72%, rgba(112, 151, 232, 0.12), transparent 30%),
    #37328A;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--graphite), var(--deep));
  border: 1px solid rgba(202, 171, 232, 0.12);
  box-shadow: 0 0 0 1px rgba(202, 171, 232, 0.14), 0 0 32px rgba(202, 171, 232, 0.20), 0 0 66px rgba(202, 171, 232, 0.11), 0 45px 90px rgba(0, 0, 0, 0.35), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.about-text h2 { margin-bottom: 24px; }
.about-text p {
  font-size: 16px;
  color: var(--medium);
  margin-bottom: 20px;
  max-width: 580px;
}
.about-list {
  list-style: none;
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--mist);
  font-weight: 500;
}
.about-list .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--medium);
  flex: none;
  box-shadow: 0 0 0 4px rgba(158, 111, 218, 0.08);
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background:
    radial-gradient(circle at 12% 16%, rgba(112, 151, 232, 0.08), transparent 28%),
    linear-gradient(180deg, #312D7C 0%, #2C2872 100%);
  border-top: 1px solid rgba(202, 171, 232, 0.06);
  border-bottom: 1px solid rgba(202, 171, 232, 0.06);
}

.how-it-works .section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  align-items: stretch;
}

.step-card {
  min-height: 250px;
  padding: 26px 24px 24px;
  position: relative;
  overflow: visible;
  border-radius: 12px;
  border: 1px solid rgba(202, 171, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(86, 69, 169, 0.32) 0%, rgba(62, 58, 161, 0.76) 100%),
    rgba(62, 58, 161, 0.82);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.025), 0 18px 34px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 20%) var(--my, 0%), rgba(202, 171, 232, 0.11), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

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

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 171, 232, 0.22);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.04), 0 24px 42px rgba(0, 0, 0, 0.2);
}

.step-card:hover::before { opacity: 1; }

.step-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.step-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--offwhite);
  background: linear-gradient(145deg, rgba(112, 151, 232, 0.52), rgba(86, 69, 169, 0.58));
  border: 1px solid rgba(202, 171, 232, 0.10);
}

.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -1px;
  color: rgba(202, 171, 232, 0.17);
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 650;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--medium);
  max-width: 240px;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -41px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3E3AA1;
  border: 1px solid rgba(202, 171, 232, 0.14);
  color: rgba(242, 241, 253, 0.86);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.step-arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-cta { margin-top: 44px; }

/* ---------- CONTACT ---------- */
.contact {
  background:
    radial-gradient(circle at 12% 70%, rgba(112, 151, 232, 0.12), transparent 28%),
    #3E3AA1;
  color: var(--offwhite);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact h2 { margin-bottom: 22px; }
.contact p {
  font-size: 16px;
  color: var(--medium);
  max-width: 460px;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex: none;
  border: 1px solid rgba(202, 171, 232, 0.22);
  background: linear-gradient(145deg, rgba(112, 151, 232, 0.38), rgba(86, 69, 169, 0.22));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
}
.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-icon-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
}

/* Efeito em camadas inspirado nos ícones da seção de contato do site de referência Ajales. */
.contact-icon-animated {
  position: relative;
  overflow: visible;
  isolation: isolate;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.contact-icon-animated svg {
  position: relative;
  z-index: 4;
  transition: transform .3s ease, filter .3s ease, color .3s ease;
  will-change: transform;
}

.contact-icon-layer {
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(202, 171, 232, 0.34);
  background: rgba(202, 171, 232, 0.035);
  box-shadow:
    inset 0 0 20px rgba(242, 241, 253, 0.10),
    inset 0 0 5px rgba(242, 241, 253, 0.14),
    0 5px 10px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}

.contact-item:hover .contact-icon-animated,
.contact-item:focus-within .contact-icon-animated {
  border-color: rgba(202, 171, 232, 0.38);
  background: linear-gradient(145deg, rgba(112, 151, 232, 0.48), rgba(86, 69, 169, 0.28));
  box-shadow:
    inset 0 0 20px rgba(242, 241, 253, 0.10),
    inset 0 0 5px rgba(242, 241, 253, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(202, 171, 232, 0.08);
}

.contact-item:hover .contact-icon-animated svg,
.contact-item:focus-within .contact-icon-animated svg {
  transform: translate(10px, -10px);
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.22));
}

.contact-item:hover .contact-icon-layer,
.contact-item:focus-within .contact-icon-layer {
  opacity: 1;
}

.contact-item:hover .contact-icon-layer:nth-child(1),
.contact-item:focus-within .contact-icon-layer:nth-child(1) {
  opacity: .20;
}

.contact-item:hover .contact-icon-layer:nth-child(2),
.contact-item:focus-within .contact-icon-layer:nth-child(2) {
  opacity: .40;
  transform: translate(5px, -5px);
}

.contact-item:hover .contact-icon-layer:nth-child(3),
.contact-item:focus-within .contact-icon-layer:nth-child(3) {
  opacity: .62;
  transform: translate(10px, -10px);
}
.contact-item h4 {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-item a,
.contact-item span {
  font-size: 16px;
  color: var(--offwhite);
  font-weight: 500;
}
.contact-item a:hover { color: var(--mist); }

.contact-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--graphite), var(--deep));
  box-shadow: 0 0 0 1px rgba(202, 171, 232, 0.14), 0 0 32px rgba(202, 171, 232, 0.20), 0 0 66px rgba(202, 171, 232, 0.11), 0 30px 70px rgba(0, 0, 0, 0.35), 0 10px 26px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(202, 171, 232, 0.12);
}

/* ---------- FAQ ---------- */
.faq {
  background:
    radial-gradient(circle at 50% -8%, rgba(112, 151, 232, 0.10), transparent 30%),
    #2B2770;
  border-top: 1px solid rgba(202, 171, 232, 0.06);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-header h2 {
  margin-top: 12px;
}

.faq-header p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--medium);
  font-size: 16px;
  line-height: 1.75;
}

.faq-list {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(202, 171, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(86, 69, 169, 0.34) 0%, rgba(62, 58, 161, 0.78) 100%),
    rgba(62, 58, 161, 0.88);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.025), 0 16px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(280px circle at var(--mx) var(--my), rgba(202, 171, 232, 0.12), transparent 36%),
    radial-gradient(180px circle at var(--mx) var(--my), rgba(242, 241, 253, 0.06), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.faq-item:hover,
.faq-item.is-open {
  transform: translateY(-4px);
  border-color: rgba(202, 171, 232, 0.22);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.04), 0 24px 42px rgba(0, 0, 0, 0.22);
}

.faq-item:hover::before,
.faq-item.is-open::before {
  opacity: 1;
}

.faq-question {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  color: var(--offwhite);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
}

.faq-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: rgba(202, 171, 232, 0.42);
  transition: color 0.25s ease;
}

.faq-title {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--mist);
  transition: color 0.25s ease;
  padding-top: 0;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(202, 171, 232, 0.18);
  position: relative;
  justify-self: end;
  align-self: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--mist);
  transition: transform 0.3s ease, left 0.3s ease, background 0.3s ease;
}

.faq-toggle::before {
  left: calc(50% - 3px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-toggle::after {
  left: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-question:hover .faq-title,
.faq-question[aria-expanded="true"] .faq-title {
  color: var(--offwhite);
}

.faq-question:hover .faq-number,
.faq-question[aria-expanded="true"] .faq-number {
  color: rgba(242, 241, 253, 0.72);
}

.faq-question:hover .faq-toggle,
.faq-question[aria-expanded="true"] .faq-toggle {
  background: rgba(112, 151, 232, 0.34);
  border-color: rgba(202, 171, 232, 0.30);
}

.faq-question[aria-expanded="true"] .faq-toggle::before {
  left: calc(50% - 3px);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  left: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.36s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  color: var(--medium);
  font-size: 13.5px;
  line-height: 1.8;
  padding: 0 18px 16px 58px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-cta {
  max-width: 1040px;
  width: 100%;
  margin: 42px auto 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  border-radius: 12px;
  border: 1px solid rgba(202, 171, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(86, 69, 169, 0.34) 0%, rgba(62, 58, 161, 0.78) 100%),
    rgba(62, 58, 161, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(242, 241, 253, 0.025),
    0 18px 34px rgba(0, 0, 0, 0.14);
}

.faq-cta-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--mist);
  background: linear-gradient(145deg, rgba(112, 151, 232, 0.50), rgba(86, 69, 169, 0.58));
  border: 1px solid rgba(202, 171, 232, 0.10);
}

.faq-cta-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-cta-icon circle {
  fill: currentColor;
  stroke: none;
}

.faq-cta-copy span,
.faq-cta-copy strong {
  display: block;
}

.faq-cta-copy strong {
  color: var(--offwhite);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 3px;
}

.faq-cta-copy span {
  color: var(--medium);
  font-size: 13px;
  line-height: 1.45;
}

.faq-cta .btn-primary {
  white-space: nowrap;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 18px 0 50px;
  color: var(--medium);
  background: #2B2770;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(202, 171, 232, 0.06), rgba(86, 69, 169, 0.16));
  border: 1px solid rgba(202, 171, 232, 0.12);
  box-shadow: inset 0 1px 0 rgba(242, 241, 253, 0.05), 0 24px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  position: relative;
  overflow: hidden;
}
.footer small { font-size: 13px; position: relative; z-index: 1; color: var(--medium); }
.footer a { color: var(--offwhite); font-weight: 700; }
.footer a:hover { color: var(--mist); }

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), 0 0 0 0 rgba(37, 211, 102, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappPulse 2.8s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(37, 211, 102, 0.1);
}

@keyframes whatsappPulse {
  0%, 60%, 100% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), 0 0 0 0 rgba(37, 211, 102, 0.32); }
  80% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s cubic-bezier(.2,.7,.2,1), transform 0.72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }
  .nav-whatsapp { padding: 10px 14px; }
}

@media (max-width: 960px) {
  .nav-links,
  .nav-whatsapp { display: none; }
  .burger { display: flex; }

  .nav-links.is-open {
    display: flex;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: calc(100dvh - 90px);
    padding: 34px 32px 120px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    background: rgba(43, 39, 112, 0.985);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }

  .nav-links.is-open a { font-size: 17px; color: var(--mist); }
  .nav-links.is-open::after {
    content: '(11) 99260-1357';
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    margin-top: 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7097E8, #5645A9);
    border: 1px solid rgba(242, 241, 253, 0.16);
    color: var(--offwhite);
    font-size: 14px;
    font-weight: 700;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 48px; }
  .hero { padding-top: 120px; }
  .hero-visual { max-height: 680px; }
  .about-grid { gap: 52px; }
  .about-visual { aspect-ratio: 16 / 10; }
  .contact-grid { gap: 48px; }
  .contact-icon { width: 56px; height: 56px; }
  .contact-icon svg { width: 28px; height: 28px; }
  .contact-icon-whatsapp svg { width: 30px; height: 30px; }

  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .step-arrow { display: none; }
  .step-card p { max-width: none; }

  section { padding: 88px 0; }
  .footer-shell { border-radius: 28px; flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 8px 20px; min-height: 82px; }
  .logo { width: 96px; height: 66px; border-radius: 16px; }
  .nav-links.is-open { top: 82px; height: calc(100dvh - 82px); padding-left: 20px; padding-right: 20px; }

  .hero { min-height: auto; padding: 118px 0 72px; }
  .hero-grid { gap: 38px; }
  .hero h1 { font-size: clamp(42px, 12vw, 56px); }
  .hero h2 { font-size: 16px; }
  .hero-visual { aspect-ratio: 4 / 4.6; border-radius: 14px; }
  .hero-stat-card { left: 16px; bottom: 16px; padding: 15px 18px; }
  .hero-stat-card .num { font-size: 28px; }

  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-offset { margin-top: 0; }
  .service-card { min-height: 0; padding: 22px 20px 18px; }
  .service-card p { min-height: 0; }
  .services-cta { margin-top: 48px; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card,
  .step-card:first-child,
  .step-card:nth-child(2),
  .step-card:nth-child(3),
  .step-card:nth-child(4) {
    min-height: 0;
    border-left: 1px solid rgba(202, 171, 232, 0.12);
    border-right: 1px solid rgba(202, 171, 232, 0.12);
    border-top: 1px solid rgba(202, 171, 232, 0.12);
    border-bottom: 1px solid rgba(202, 171, 232, 0.12);
  }
  .step-card:last-child { border-bottom: 1px solid rgba(202, 171, 232, 0.12); }
  .step-card-top { margin-bottom: 24px; }
  .step-number { font-size: 52px; }
  .step-arrow { display: none; }

  .faq-header { margin-bottom: 44px; }
  .faq-header p { font-size: 14px; }
  .faq-list { grid-template-columns: 1fr; gap: 12px; }
  .faq-question {
    grid-template-columns: 30px 1fr 28px;
    gap: 10px;
    min-height: 0;
    padding: 16px 16px 12px;
  }
  .faq-number { font-size: 18px; }
  .faq-title { font-size: 13.5px; }
  .faq-toggle { width: 28px; height: 28px; }
  .faq-answer p { padding: 0 16px 18px 56px; font-size: 13px; }
  .faq-cta {
    margin-top: 36px;
    padding: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
  }
  .faq-cta-icon { width: 38px; height: 38px; }
  .faq-cta .btn-primary {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}


/* ---------- AMORES DA SI — IDENTIDADE V01 ---------- */
.logo {
  background: #F2F1FD;
  border-color: rgba(202, 171, 232, 0.38);
  box-shadow: 0 10px 30px rgba(34, 29, 93, 0.34), inset 0 1px 0 rgba(255,255,255,.7);
}
.logo img { border-radius: 15px; }
.nav-whatsapp,
.nav-links.is-open::after {
  background: linear-gradient(135deg, #7097E8, #5645A9);
}
.hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(158, 111, 218, 0.22), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(112, 151, 232, 0.16), transparent 32%),
    linear-gradient(180deg, #2B2770 0%, #312D7C 100%);
}
::selection { background: #CAABE8; color: #2B2770; }


/* ---------- PRODUTOS — CARROSSÉIS AMORES DA SI ---------- */
.products {
  overflow: hidden;
}

.products-wrap {
  max-width: 1440px;
}

.products .section-head {
  margin-bottom: 42px;
}

.products-gallery {
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(202, 171, 232, 0.44), transparent 31%),
    radial-gradient(circle at 88% 82%, rgba(112, 151, 232, 0.30), transparent 32%),
    rgba(242, 241, 253, 0.98);
  border: 1px solid rgba(242, 241, 253, 0.52);
  border-radius: clamp(24px, 3vw, 38px);
  box-shadow:
    0 32px 80px rgba(20, 16, 71, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  isolation: isolate;
}

.arc-carousel {
  --card-height: 250px;
  position: relative;
  height: clamp(520px, 62vh, 680px);
  margin-top: -12px;
  overflow: hidden;
  outline: none;
  isolation: isolate;
  cursor: default;
  touch-action: pan-y;
}

.arc-carousel::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -52%;
  width: 115%;
  height: 78%;
  border: 1px solid rgba(62, 58, 161, 0.08);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.arc-carousel:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(86, 69, 169, 0.18);
}

.arc-card {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--card-width, 170px);
  height: var(--card-height);
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(62, 58, 161, 0.11);
  border-radius: 19px;
  box-shadow:
    0 24px 55px rgba(43, 39, 112, 0.18),
    0 5px 16px rgba(43, 39, 112, 0.11);
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
  transition: box-shadow 220ms ease, border-color 220ms ease;
  pointer-events: auto;
  cursor: zoom-in;
}

.arc-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  user-select: none;
  pointer-events: none;
}

.arc-card:hover {
  border-color: rgba(86, 69, 169, 0.35);
  box-shadow:
    0 32px 70px rgba(43, 39, 112, 0.24),
    0 7px 20px rgba(43, 39, 112, 0.14);
}

.featured-showcase {
  position: relative;
  z-index: 20;
  margin-top: clamp(-112px, -7vw, -76px);
  padding: 0 0 clamp(38px, 5vw, 58px);
}

.featured-carousel {
  --featured-card-height: 195px;
  --orbit-depth: 190px;
  position: relative;
  z-index: 20;
  width: min(640px, 92vw);
  height: 280px;
  margin: 0 auto;
  perspective: 920px;
  transform-style: preserve-3d;
  pointer-events: auto;
  isolation: isolate;
}

.featured-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--card-width);
  height: var(--featured-card-height);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(62, 58, 161, 0.12);
  border-radius: 18px;
  box-shadow:
    0 18px 44px rgba(43, 39, 112, 0.22),
    0 4px 12px rgba(43, 39, 112, 0.12);
  cursor: zoom-in;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  animation: featuredOrbit 17.78s linear infinite;
  animation-delay: var(--orbit-delay);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.featured-carousel:hover .featured-card,
.featured-carousel:focus-within .featured-card,
body.lightbox-open .featured-card {
  animation-play-state: paused;
}

.featured-card:hover,
.featured-card:focus-visible {
  border-color: rgba(86, 69, 169, 0.42);
  box-shadow:
    0 23px 54px rgba(43, 39, 112, 0.28),
    0 6px 18px rgba(43, 39, 112, 0.15);
  outline: none;
}

@keyframes featuredOrbit {
  0% { z-index: 5; opacity: 1; transform: translate(-50%, -50%) rotateY(0deg) translateZ(var(--orbit-depth)) rotateY(0deg); }
  25% { z-index: 3; opacity: 0.78; transform: translate(-50%, -50%) rotateY(90deg) translateZ(var(--orbit-depth)) rotateY(-90deg); }
  50% { z-index: 1; opacity: 0.46; transform: translate(-50%, -50%) rotateY(180deg) translateZ(var(--orbit-depth)) rotateY(-180deg); }
  75% { z-index: 3; opacity: 0.78; transform: translate(-50%, -50%) rotateY(270deg) translateZ(var(--orbit-depth)) rotateY(-270deg); }
  100% { z-index: 5; opacity: 1; transform: translate(-50%, -50%) rotateY(360deg) translateZ(var(--orbit-depth)) rotateY(-360deg); }
}

body.lightbox-open { overflow: hidden; }

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 58, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-lightbox__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100%, 1120px);
  max-height: min(92vh, 960px);
}

.image-lightbox__content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(86vh, 920px);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  background: #ffffff;
}

.image-lightbox__close {
  position: absolute;
  top: clamp(-6px, -1vw, -12px);
  right: clamp(-6px, -1vw, -12px);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: #ffffff;
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 2px;
}

.about-text .btn-primary {
  margin-top: 14px;
}

@media (max-width: 760px) {
  .products .section-head { margin-bottom: 30px; }

  .products-gallery { border-radius: 22px; }

  .arc-carousel {
    --card-height: 164px;
    height: min(70vh, 540px);
    width: 100vw;
    max-width: none;
    margin-top: -8px;
    margin-left: calc(50% - 50vw);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.62) 6%, #000 14%, #000 86%, rgba(0, 0, 0, 0.62) 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.62) 6%, #000 14%, #000 86%, rgba(0, 0, 0, 0.62) 94%, transparent 100%);
  }

  .arc-card { border-radius: 16px; }

  .featured-showcase {
    margin-top: -48px;
    padding: 0 0 30px;
  }

  .featured-carousel {
    --featured-card-height: 136px;
    --orbit-depth: 120px;
    width: min(360px, 94vw);
    height: 190px;
    perspective: 560px;
  }

  .featured-card {
    width: var(--card-width-mobile);
    border-radius: 14px;
    animation-duration: 16.67s;
    animation-delay: var(--orbit-delay-mobile);
  }
}

/* ========================================================================== 
   AMORES DA SI — V03 | PALETA CLARA PREMIUM + MOVIMENTO DE FUNDO
   ========================================================================== */
:root {
  --offwhite: #ffffff;
  --mist: #d8c9f3;
  --medium: #6f688d;
  --graphite: #6682c9;
  --deep: #57469d;
  --black: #2b245d;
  --ink: #292447;
  --panel: rgba(255, 255, 255, 0.64);
  --panel-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(78, 64, 143, 0.13);
  --line-strong: rgba(78, 64, 143, 0.23);
  --premium-ink: #282344;
  --premium-copy: #625c79;
  --premium-purple: #58459f;
  --premium-blue: #6686d1;
  --premium-lilac: #bda8e5;
  --premium-gold: #c6a35d;
  --premium-white: #fffefe;
}

html {
  scrollbar-color: #8976c1 #f1eff8;
}

body,
body::-webkit-scrollbar-track {
  background: #f6f4fb;
}

body {
  color: var(--premium-ink);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9f8bd0, #6f80c8);
  border-color: #f1eff8;
}

::selection {
  color: #ffffff;
  background: #6b55ac;
}

/* Menu claro, translúcido e mais sofisticado. */
.nav {
  background: rgba(255, 255, 255, 0.76);
  border-bottom-color: rgba(77, 61, 139, 0.10);
  box-shadow: 0 16px 52px rgba(59, 48, 113, 0.10);
  backdrop-filter: blur(22px) saturate(1.22);
  -webkit-backdrop-filter: blur(22px) saturate(1.22);
}

.nav.scrolled {
  background: rgba(252, 250, 255, 0.94);
  border-color: rgba(77, 61, 139, 0.16);
  box-shadow: 0 18px 54px rgba(48, 38, 103, 0.14);
}

.logo {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(91, 72, 160, 0.18);
  box-shadow: 0 12px 32px rgba(69, 55, 126, 0.15), inset 0 1px 0 #ffffff;
}

.nav-links a {
  color: #4e486a;
}

.nav-links a::after {
  background: linear-gradient(90deg, #5c479f, #718bd1);
}

.nav-links a:hover {
  color: #392f6d;
}

.burger {
  border-color: rgba(79, 63, 142, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(67, 52, 126, 0.12);
}

.burger span {
  background: #423871;
}

/* Fundos claros distintos com luzes em movimento. */
.hero,
.services,
.about,
.how-it-works,
.contact,
.faq {
  isolation: isolate;
  overflow: hidden;
  color: var(--premium-ink);
  border-color: rgba(76, 62, 137, 0.08);
}

.hero {
  background: linear-gradient(135deg, #fffefd 0%, #eef4ff 44%, #f4edff 100%);
}

.services {
  background: linear-gradient(180deg, #eef4ff 0%, #f9f7ff 52%, #fffdfd 100%);
}

.about {
  background: linear-gradient(135deg, #fffaf4 0%, #f7f2ff 48%, #edf6ff 100%);
}

.how-it-works {
  background: linear-gradient(145deg, #edf5ff 0%, #f9f5ff 54%, #fffaf4 100%);
}

.contact {
  background: linear-gradient(135deg, #fbf5ff 0%, #eef6ff 58%, #fffdf8 100%);
}

.faq {
  background: linear-gradient(180deg, #fffefe 0%, #f3effb 100%);
}

.hero::before,
.hero::after,
.services::before,
.services::after,
.about::before,
.about::after,
.how-it-works::before,
.how-it-works::after,
.contact::before,
.contact::after,
.faq::before,
.faq::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: clamp(330px, 38vw, 650px);
  height: clamp(330px, 38vw, 650px);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
  opacity: 0.72;
  will-change: transform;
}

.hero::before,
.services::before,
.about::before,
.how-it-works::before,
.contact::before,
.faq::before {
  left: -12%;
  top: -18%;
  background: radial-gradient(circle, rgba(151, 179, 239, 0.42) 0%, rgba(181, 163, 229, 0.24) 38%, transparent 70%);
  animation: premiumBlobA 18s ease-in-out infinite alternate;
}

.hero::after,
.services::after,
.about::after,
.how-it-works::after,
.contact::after,
.faq::after {
  right: -13%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(190, 164, 229, 0.42) 0%, rgba(123, 157, 224, 0.20) 42%, transparent 72%);
  animation: premiumBlobB 22s ease-in-out infinite alternate;
}

.services::before { animation-delay: -4s; }
.services::after { animation-delay: -10s; }
.about::before { animation-delay: -8s; background: radial-gradient(circle, rgba(225, 191, 140, 0.24), rgba(187, 166, 229, 0.22) 42%, transparent 72%); }
.about::after { animation-delay: -3s; }
.how-it-works::before { animation-delay: -12s; }
.how-it-works::after { animation-delay: -7s; background: radial-gradient(circle, rgba(134, 171, 233, 0.34), rgba(202, 181, 232, 0.19) 46%, transparent 72%); }
.contact::before { animation-delay: -6s; }
.contact::after { animation-delay: -14s; }
.faq::before { animation-delay: -10s; opacity: 0.55; }
.faq::after { animation-delay: -2s; opacity: 0.52; }

@keyframes premiumBlobA {
  0% { transform: translate3d(-3%, -2%, 0) scale(0.96); }
  48% { transform: translate3d(18%, 12%, 0) scale(1.08); }
  100% { transform: translate3d(6%, 30%, 0) scale(0.98); }
}

@keyframes premiumBlobB {
  0% { transform: translate3d(2%, 4%, 0) scale(1); }
  52% { transform: translate3d(-18%, -16%, 0) scale(1.10); }
  100% { transform: translate3d(-4%, -30%, 0) scale(0.94); }
}

.hero > .wrap,
.services > .wrap,
.about > .wrap,
.how-it-works > .wrap,
.contact > .wrap,
.faq > .wrap {
  position: relative;
  z-index: 2;
}

/* Tipografia e contraste para a nova paleta clara. */
.eyebrow {
  color: #6555a0;
}

.eyebrow::before {
  background: linear-gradient(90deg, #6555a0, #84a0df);
}

.hero h1,
.section-head h2,
.about-text h2,
.contact h2,
.faq-header h2,
.faq-intro h2 {
  color: var(--premium-ink);
  text-shadow: 0 12px 34px rgba(80, 65, 139, 0.07);
}

.hero h2,
.section-head p,
.about-text p,
.contact p,
.faq-header p,
.faq-intro > p {
  color: var(--premium-copy);
}

.link-underline {
  color: #54478b;
  border-color: rgba(84, 71, 139, 0.42);
}

.link-underline:hover {
  color: #352c6a;
  border-color: #352c6a;
}

/* Molduras das fotos mais leves, com aparência editorial premium. */
.hero-visual,
.about-visual,
.contact-visual {
  background: linear-gradient(145deg, #ffffff, #eee9fa);
  border: 1px solid rgba(90, 72, 155, 0.15);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.82),
    0 26px 70px rgba(63, 52, 117, 0.18),
    0 8px 24px rgba(87, 70, 149, 0.10),
    0 0 54px rgba(132, 155, 219, 0.14);
}

.hero-visual::after,
.about-visual::after,
.contact-visual::after {
  background: linear-gradient(180deg, transparent 66%, rgba(55, 43, 105, 0.12));
}

/* O texto da seção Sobre recebe um painel translúcido, mas o fundo continua visível. */
.about-text {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.50));
  border: 1px solid rgba(91, 72, 156, 0.13);
  box-shadow: 0 28px 74px rgba(65, 52, 119, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.10);
  -webkit-backdrop-filter: blur(18px) saturate(1.10);
}

/* Cards das demais seções claros e com profundidade mais elegante. */
.step-card,
.faq-item,
.faq-cta {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(248, 246, 255, 0.68));
  border-color: rgba(82, 65, 145, 0.13);
  box-shadow: 0 20px 46px rgba(62, 49, 116, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
}

.step-card::before,
.faq-item::before {
  background: radial-gradient(circle at var(--mx, 20%) var(--my, 0%), rgba(139, 112, 202, 0.16), transparent 36%);
}

.step-card:hover,
.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(91, 72, 156, 0.25);
  box-shadow: 0 28px 58px rgba(62, 49, 116, 0.16), inset 0 1px 0 #ffffff;
}

.step-icon,
.faq-cta-icon,
.contact-icon {
  color: #ffffff;
  background: linear-gradient(145deg, #7896dc, #6650aa);
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 28px rgba(77, 61, 139, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.step-number {
  color: rgba(91, 72, 156, 0.18);
}

.step-card h3,
.faq-title,
.faq-cta-copy strong,
.contact-item a,
.contact-item span {
  color: var(--premium-ink);
}

.step-card p,
.faq-answer p,
.faq-cta-copy span {
  color: var(--premium-copy);
}

.step-arrow {
  color: #ffffff;
  background: linear-gradient(145deg, #748fd4, #5d479f);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(67, 51, 126, 0.18);
}

.contact-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(87, 69, 151, 0.10);
  box-shadow: 0 14px 34px rgba(61, 47, 114, 0.07);
}

.contact-item h4 {
  color: #6b5aa5;
}

.contact-item a:hover {
  color: #59439a;
}

.contact-icon-layer {
  border-color: rgba(97, 75, 164, 0.25);
  background: rgba(129, 102, 192, 0.06);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.42), 0 5px 12px rgba(72, 55, 133, 0.12);
}

.contact-item:hover .contact-icon-animated,
.contact-item:focus-within .contact-icon-animated {
  background: linear-gradient(145deg, #86a1e1, #6b55ac);
  border-color: rgba(255, 255, 255, 0.70);
  box-shadow: 0 12px 30px rgba(80, 62, 145, 0.22), 0 0 24px rgba(131, 158, 222, 0.18);
}

.faq-question {
  color: var(--premium-ink);
}

.faq-number {
  color: rgba(87, 68, 151, 0.38);
}

.faq-question:hover .faq-title,
.faq-question[aria-expanded="true"] .faq-title,
.faq-question:hover .faq-number,
.faq-question[aria-expanded="true"] .faq-number {
  color: #443579;
}

.faq-toggle {
  border-color: rgba(88, 69, 151, 0.22);
}

.faq-toggle::before,
.faq-toggle::after {
  background: #5f4b9e;
}

.faq-question:hover .faq-toggle,
.faq-question[aria-expanded="true"] .faq-toggle {
  background: rgba(117, 143, 209, 0.18);
  border-color: rgba(88, 69, 151, 0.30);
}

/* Produtos: os dois carrosséis ficam diretamente sobre o fundo da seção. */
.products-wrap {
  max-width: 1440px;
}

.products-gallery {
  overflow: visible;
  color: var(--premium-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.carousel-title {
  position: relative;
  z-index: 35;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 10px;
}

.carousel-title span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #6b5aa5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.carousel-title span::after {
  content: '';
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #6b5aa5, rgba(107, 90, 165, 0));
}

.carousel-title h3 {
  margin: 0;
  color: var(--premium-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.04;
}

.carousel-title--arc {
  margin-bottom: 2px;
}

.carousel-title--featured {
  text-align: center;
  margin-bottom: 6px;
}

.carousel-title--featured span {
  justify-content: center;
}

.arc-carousel {
  height: clamp(500px, 59vh, 650px);
  width: 100vw;
  max-width: none;
  margin-top: -4px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.72) 7%, #000 14%, #000 86%, rgba(0, 0, 0, 0.72) 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.72) 7%, #000 14%, #000 86%, rgba(0, 0, 0, 0.72) 93%, transparent 100%);
}

.arc-carousel::before {
  left: 50%;
  width: min(1400px, calc(100vw - 80px));
  border-color: rgba(76, 61, 135, 0.07);
}

.arc-card,
.featured-card {
  background: #ffffff;
  border-color: rgba(78, 63, 139, 0.13);
  box-shadow: 0 24px 58px rgba(55, 43, 104, 0.17), 0 5px 16px rgba(62, 48, 116, 0.09);
}

.arc-card:hover,
.featured-card:hover,
.featured-card:focus-visible {
  border-color: rgba(84, 66, 150, 0.34);
  box-shadow: 0 32px 72px rgba(55, 43, 104, 0.23), 0 8px 20px rgba(62, 48, 116, 0.12);
}

.featured-showcase {
  margin-top: clamp(-74px, -5vw, -42px);
  padding-bottom: clamp(34px, 4vw, 52px);
}

.featured-carousel {
  height: 300px;
}

/* O segundo carrossel agora é controlado por JS, eliminando falhas da animação CSS. */
.featured-card {
  animation: none !important;
  transition: box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform, opacity;
}

/* Botão inspirado diretamente no Ajales, com faixa de luz animada e glow. */
.btn-primary.ajales-btn,
.nav-whatsapp.ajales-btn {
  --btn-bgpos: 0% 0%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 1px;
  overflow: visible;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  line-height: 1;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), filter .42s cubic-bezier(.22, 1, .36, 1);
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(43, 34, 91, 0.12));
}

.btn-primary.ajales-btn::before,
.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::before,
.nav-whatsapp.ajales-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(
    45deg,
    #4e3b91, #4e3b91,
    #6a55b0, #d4c5f1,
    #7897dd, #58439e,
    #58439e, #58439e,
    #58439e, #927ac8,
    #ffffff, #7f9ad9,
    #5b469f, #4e3b91,
    #4e3b91, #4e3b91
  );
  background-size: 200% 200%;
  background-position: var(--btn-bgpos);
  opacity: .96;
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1);
}

.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::after {
  z-index: -1;
  opacity: .48;
  filter: blur(18px);
}

.ajales-btn__label {
  position: relative;
  z-index: 2;
  min-height: 50px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  background: linear-gradient(135deg, #5a469e, #413478);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 1px 4px rgba(24, 17, 58, .78), 0 0 12px rgba(24, 17, 58, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
  transition: color .5s cubic-bezier(.22, 1, .36, 1), background .5s cubic-bezier(.22, 1, .36, 1);
}

.ajales-btn__label::before {
  content: '';
  position: absolute;
  inset: 0 0 50%;
  border-radius: inherit;
  background: rgba(255, 255, 255, .055);
  pointer-events: none;
}

.ajales-btn:hover,
.ajales-btn:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  outline: none;
}

.ajales-btn:hover::before,
.ajales-btn:hover::after,
.ajales-btn:focus-visible::before,
.ajales-btn:focus-visible::after {
  opacity: 0;
}

.ajales-btn:hover .ajales-btn__label,
.ajales-btn:focus-visible .ajales-btn__label {
  color: #ece5ff;
  background: linear-gradient(135deg, #4b3a88, #352a68);
}

.ajales-btn__arrow {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.ajales-btn:hover .ajales-btn__arrow,
.ajales-btn:focus-visible .ajales-btn__arrow {
  transform: translateX(4px);
}

.nav-whatsapp.ajales-btn {
  min-height: 0;
  padding: 1px;
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-box-reflect: unset;
}

.nav-whatsapp.ajales-btn .ajales-btn__label {
  min-height: 44px;
  padding: 0 19px;
  font-size: 13px;
}

.nav-whatsapp.ajales-btn svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
  fill: currentColor;
}

/* Rodapé também claro, preservando acabamento em glass. */
.footer {
  color: var(--premium-copy);
  background: linear-gradient(180deg, #f3effa, #ebe7f5);
}

.footer-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.48));
  border-color: rgba(80, 63, 142, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 20px 50px rgba(62, 48, 115, 0.10);
}

.footer small {
  color: var(--premium-copy);
}

.footer a,
.footer a:hover {
  color: #574395;
}

@media (max-width: 960px) {
  .nav-links.is-open {
    background: rgba(252, 250, 255, 0.98);
    border-color: rgba(82, 65, 145, 0.14);
    box-shadow: 0 24px 56px rgba(55, 42, 108, 0.16);
  }

  .nav-links.is-open a {
    color: #453b70;
  }
}

@media (max-width: 760px) {
  .hero,
  .services,
  .about,
  .how-it-works,
  .contact,
  .faq {
    overflow: hidden;
  }

  .about-text {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .products-gallery {
    border-radius: 0;
  }

  .carousel-title {
    width: min(100% - 28px, 1180px);
    padding: 0;
  }

  .carousel-title h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .arc-carousel {
    height: min(64vh, 500px);
    margin-top: 0;
  }

  .featured-showcase {
    margin-top: -28px;
    padding-bottom: 26px;
  }

  .featured-carousel {
    height: 210px;
  }

  .btn-primary.ajales-btn {
    max-width: 100%;
  }

  .ajales-btn__label {
    min-height: 48px;
    padding: 0 23px;
    white-space: normal;
  }

  .faq-cta .ajales-btn,
  .faq-cta .ajales-btn__label {
    width: 100%;
  }
}

/* Mantém o comportamento responsivo original do cabeçalho no tablet/celular. */
@media (max-width: 960px) {
  .nav-whatsapp.ajales-btn {
    display: none;
  }
}

/* ========================================================================== 
   AMORES DA SI — V04 | FUNDO CONTÍNUO, CLARO E PREMIUM
   Todas as seções do conteúdo compartilham uma única malha de degradês.
   ========================================================================== */

main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #fffdfb 0%,
      #f8f5ff 13%,
      #eef5ff 29%,
      #fbf8ff 43%,
      #fff9f2 57%,
      #f3f1ff 72%,
      #eef7ff 87%,
      #fffdf9 100%
    );
}

/* Luzes distribuídas pela altura total da página: não reiniciam em cada seção. */
main::before,
main::after {
  content: '';
  position: absolute;
  inset: -3% -8%;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

main::before {
  background:
    radial-gradient(ellipse 34% 11% at 8% 5%, rgba(180, 159, 230, 0.34) 0%, rgba(180, 159, 230, 0.13) 42%, transparent 72%),
    radial-gradient(ellipse 36% 12% at 92% 17%, rgba(140, 174, 235, 0.30) 0%, rgba(140, 174, 235, 0.12) 44%, transparent 74%),
    radial-gradient(ellipse 38% 13% at 12% 34%, rgba(228, 195, 151, 0.21) 0%, rgba(205, 178, 226, 0.12) 45%, transparent 75%),
    radial-gradient(ellipse 40% 13% at 88% 50%, rgba(174, 151, 226, 0.28) 0%, rgba(137, 174, 233, 0.10) 46%, transparent 76%),
    radial-gradient(ellipse 38% 12% at 9% 68%, rgba(128, 171, 230, 0.25) 0%, rgba(193, 176, 229, 0.11) 47%, transparent 76%),
    radial-gradient(ellipse 42% 13% at 91% 84%, rgba(217, 186, 144, 0.18) 0%, rgba(179, 158, 225, 0.12) 45%, transparent 76%);
  filter: blur(18px);
  opacity: 0.94;
  animation: continuousAuroraA 28s ease-in-out infinite alternate;
}

main::after {
  background:
    radial-gradient(ellipse 29% 9% at 72% 7%, rgba(200, 184, 235, 0.22) 0%, transparent 72%),
    radial-gradient(ellipse 33% 10% at 29% 24%, rgba(151, 184, 237, 0.19) 0%, transparent 74%),
    radial-gradient(ellipse 31% 10% at 70% 40%, rgba(228, 204, 170, 0.16) 0%, transparent 73%),
    radial-gradient(ellipse 34% 10% at 30% 57%, rgba(187, 165, 229, 0.21) 0%, transparent 74%),
    radial-gradient(ellipse 32% 10% at 72% 73%, rgba(142, 181, 234, 0.20) 0%, transparent 74%),
    radial-gradient(ellipse 30% 9% at 35% 92%, rgba(202, 180, 232, 0.19) 0%, transparent 72%);
  filter: blur(26px);
  opacity: 0.78;
  animation: continuousAuroraB 34s ease-in-out infinite alternate;
}

@keyframes continuousAuroraA {
  0% {
    transform: translate3d(-1.5%, -0.4%, 0) scale(1.01);
  }
  48% {
    transform: translate3d(2.2%, 0.7%, 0) scale(1.035);
  }
  100% {
    transform: translate3d(-0.4%, 1.2%, 0) scale(1.015);
  }
}

@keyframes continuousAuroraB {
  0% {
    transform: translate3d(1.4%, 0.8%, 0) scale(1.025);
    opacity: 0.68;
  }
  52% {
    transform: translate3d(-2.1%, -0.5%, 0) scale(1.045);
    opacity: 0.86;
  }
  100% {
    transform: translate3d(0.5%, -1%, 0) scale(1.02);
    opacity: 0.74;
  }
}

/* As seções deixam de possuir fundos, bordas e luzes próprias. */
main > section {
  position: relative;
  z-index: 1;
  isolation: auto;
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

main > section::before,
main > section::after {
  display: none !important;
  content: none !important;
}

/* Evita qualquer linha visual nos encontros entre as seções. */
.hero,
.services,
.about,
.how-it-works,
.contact,
.faq {
  border-color: transparent !important;
}

/* Mantém os carrosséis diretamente sobre a malha global. */
.products-gallery {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (prefers-reduced-motion: reduce) {
  main::before,
  main::after {
    animation: none;
  }
}


/* ========================================================================== 
   AMORES DA SI — V05 | FUNDO CONTÍNUO COM CORES MAIS PRESENTES
   Paleta: #3E3AA1, #5645A9, #7097E8, #9E6FDA, #CAABE8, #F2F1FD
   ========================================================================== */

main {
  background:
    linear-gradient(
      180deg,
      #F2F1FD 0%,
      #ECEAF9 12%,
      #E5ECFA 27%,
      #EEE8FA 42%,
      #E8E7F7 58%,
      #E4EBF9 73%,
      #ECE6F8 87%,
      #F2F1FD 100%
    );
}

/* Manchas mais intensas, ainda suaves nas bordas, usando diretamente a paleta. */
main::before {
  background:
    radial-gradient(ellipse 38% 12% at 7% 5%, rgba(62, 58, 161, 0.48) 0%, rgba(86, 69, 169, 0.24) 38%, transparent 72%),
    radial-gradient(ellipse 40% 13% at 94% 17%, rgba(112, 151, 232, 0.52) 0%, rgba(112, 151, 232, 0.22) 42%, transparent 74%),
    radial-gradient(ellipse 42% 14% at 10% 34%, rgba(158, 111, 218, 0.46) 0%, rgba(202, 171, 232, 0.23) 43%, transparent 75%),
    radial-gradient(ellipse 43% 14% at 91% 50%, rgba(86, 69, 169, 0.44) 0%, rgba(112, 151, 232, 0.18) 46%, transparent 76%),
    radial-gradient(ellipse 41% 13% at 7% 68%, rgba(112, 151, 232, 0.48) 0%, rgba(62, 58, 161, 0.16) 47%, transparent 76%),
    radial-gradient(ellipse 44% 14% at 93% 84%, rgba(158, 111, 218, 0.43) 0%, rgba(202, 171, 232, 0.24) 45%, transparent 76%);
  filter: blur(22px) saturate(1.12);
  opacity: 0.90;
}

main::after {
  background:
    radial-gradient(ellipse 31% 10% at 70% 7%, rgba(202, 171, 232, 0.40) 0%, rgba(158, 111, 218, 0.14) 44%, transparent 72%),
    radial-gradient(ellipse 35% 11% at 27% 23%, rgba(112, 151, 232, 0.37) 0%, rgba(62, 58, 161, 0.12) 45%, transparent 74%),
    radial-gradient(ellipse 34% 11% at 73% 40%, rgba(158, 111, 218, 0.38) 0%, rgba(86, 69, 169, 0.13) 45%, transparent 73%),
    radial-gradient(ellipse 36% 11% at 28% 57%, rgba(86, 69, 169, 0.34) 0%, rgba(202, 171, 232, 0.16) 46%, transparent 74%),
    radial-gradient(ellipse 35% 11% at 74% 73%, rgba(112, 151, 232, 0.39) 0%, rgba(158, 111, 218, 0.13) 46%, transparent 74%),
    radial-gradient(ellipse 33% 10% at 34% 92%, rgba(202, 171, 232, 0.40) 0%, rgba(86, 69, 169, 0.12) 43%, transparent 72%);
  filter: blur(28px) saturate(1.16);
  opacity: 0.84;
}

/* Um leve véu mantém o resultado premium sem apagar as cores. */
main > section {
  background: linear-gradient(180deg, rgba(242, 241, 253, 0.08), rgba(242, 241, 253, 0.02)) !important;
}

@media (max-width: 760px) {
  main::before {
    opacity: 0.82;
    filter: blur(26px) saturate(1.10);
  }

  main::after {
    opacity: 0.76;
    filter: blur(32px) saturate(1.12);
  }
}

/* V07 — logo do menu sem card externo. */
.logo {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.logo img {
  border-radius: 0;
}


/* V08 — menu com degradê + glassmorphism e logo maior. */
.nav {
  position: fixed;
  isolation: isolate;
  background:
    linear-gradient(90deg,
      rgba(242, 241, 253, 0.72) 0%,
      rgba(234, 229, 249, 0.76) 22%,
      rgba(223, 216, 246, 0.72) 48%,
      rgba(214, 226, 255, 0.68) 74%,
      rgba(242, 241, 253, 0.74) 100%);
  border-bottom: 1px solid rgba(103, 84, 173, 0.16);
  box-shadow:
    0 18px 50px rgba(76, 60, 142, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(26px) saturate(1.3);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 50%, rgba(158, 118, 218, 0.12), transparent 24%),
    radial-gradient(circle at 84% 50%, rgba(112, 151, 232, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
}

.nav.scrolled {
  background:
    linear-gradient(90deg,
      rgba(244, 242, 253, 0.75) 0%,
      rgba(235, 229, 250, 0.77) 26%,
      rgba(225, 218, 248, 0.75) 52%,
      rgba(217, 228, 255, 0.71) 76%,
      rgba(244, 242, 253, 0.77) 100%);
  border-bottom-color: rgba(103, 84, 173, 0.18);
  box-shadow:
    0 20px 56px rgba(68, 53, 131, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.nav-inner {
  min-height: 102px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  width: 156px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(82, 64, 151, 0.14));
}

@media (max-width: 680px) {
  .nav-inner {
    min-height: 90px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .logo {
    width: 122px;
    height: 84px;
  }
}


/* V09 — efeito de luz dos botões com mais contraste e destaque. */
.btn-primary.ajales-btn::before,
.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::before,
.nav-whatsapp.ajales-btn::after {
  background: linear-gradient(
    60deg,
    #4f3aa8 0%,
    #7e5fff 14%,
    #f8f4ff 26%,
    #7cb8ff 40%,
    #a56fff 54%,
    #ffffff 66%,
    #6d4fe0 80%,
    #4f3aa8 100%
  );
  background-size: 240% 240%;
  opacity: 1;
}

.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::after {
  opacity: 0.82;
  filter: blur(22px) saturate(1.15);
}

.ajales-btn__label {
  background: linear-gradient(135deg, #48358f, #2f225e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ajales-btn:hover::before,
.ajales-btn:focus-visible::before,
.nav-whatsapp.ajales-btn:hover::before,
.nav-whatsapp.ajales-btn:focus-visible::before {
  opacity: 1;
}

.ajales-btn:hover::after,
.ajales-btn:focus-visible::after,
.nav-whatsapp.ajales-btn:hover::after,
.nav-whatsapp.ajales-btn:focus-visible::after {
  opacity: 0.95;
  filter: blur(24px) saturate(1.22);
}

.ajales-btn:hover .ajales-btn__label,
.ajales-btn:focus-visible .ajales-btn__label,
.nav-whatsapp.ajales-btn:hover .ajales-btn__label,
.nav-whatsapp.ajales-btn:focus-visible .ajales-btn__label {
  color: #ffffff;
  background: linear-gradient(135deg, #412f86, #281d54);
}


/* V10 — iluminação dos botões em movimento contínuo e claramente perceptível. */
.btn-primary.ajales-btn::before,
.nav-whatsapp.ajales-btn::before {
  filter: saturate(1.18) brightness(1.08);
}

.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::after {
  animation: amoresButtonGlowPulse 2.6s ease-in-out infinite;
}

@keyframes amoresButtonGlowPulse {
  0%, 100% {
    opacity: 0.68;
    filter: blur(19px) saturate(1.10) brightness(1.02);
    transform: scale(0.98);
  }
  50% {
    opacity: 0.98;
    filter: blur(25px) saturate(1.28) brightness(1.16);
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary.ajales-btn::after,
  .nav-whatsapp.ajales-btn::after {
    animation: none;
  }
}


/* V11 — borda luminosa rotativa, sem keyframes CSS e sem congelamento. */
.btn-primary.ajales-btn,
.nav-whatsapp.ajales-btn {
  --btn-angle: 0deg;
  padding: 2px;
  -webkit-box-reflect: none;
}

.btn-primary.ajales-btn::before,
.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::before,
.nav-whatsapp.ajales-btn::after {
  animation: none !important;
  transform: none !important;
  background: conic-gradient(
    from var(--btn-angle),
    #3e3aa1 0deg,
    #5f4cc4 62deg,
    #8d6dff 104deg,
    #ffffff 128deg,
    #8dc8ff 148deg,
    #a875ff 168deg,
    #4f3fb4 214deg,
    #3e3aa1 360deg
  );
  background-size: 100% 100%;
  background-position: center;
  opacity: 1;
  transition: opacity .28s ease, filter .28s ease;
}

.btn-primary.ajales-btn::after,
.nav-whatsapp.ajales-btn::after {
  opacity: .88;
  filter: blur(20px) saturate(1.30) brightness(1.16);
}

.btn-primary.ajales-btn::before,
.nav-whatsapp.ajales-btn::before {
  filter: saturate(1.22) brightness(1.10);
}

.ajales-btn:hover::before,
.ajales-btn:focus-visible::before,
.nav-whatsapp.ajales-btn:hover::before,
.nav-whatsapp.ajales-btn:focus-visible::before {
  opacity: 1;
  filter: saturate(1.38) brightness(1.18);
}

.ajales-btn:hover::after,
.ajales-btn:focus-visible::after,
.nav-whatsapp.ajales-btn:hover::after,
.nav-whatsapp.ajales-btn:focus-visible::after {
  opacity: 1;
  filter: blur(24px) saturate(1.42) brightness(1.24);
}


/* V12 — contorno dourado iluminado e fino nas fotos da hero e do sobre. */
.hero-visual,
.about-visual {
  isolation: isolate;
}

.hero-visual img,
.about-visual img {
  position: relative;
  z-index: 0;
}

.hero-visual::before,
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 4.8px;
  pointer-events: none;
  background:
    conic-gradient(
      from 220deg,
      #7a5311 0deg,
      #c58c24 10deg,
      #fff0b6 18deg,
      #d49a30 28deg,
      #8f6415 40deg,
      #e5bf68 58deg,
      #fff7db 68deg,
      #bf8720 82deg,
      #8b6214 96deg,
      #dfb45a 120deg,
      #fff3c2 136deg,
      #a87316 150deg,
      #f1cc74 182deg,
      #fff9e7 194deg,
      #bd841c 214deg,
      #7a5311 360deg
    );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  box-shadow:
    inset 0 0 0 0.5px rgba(255, 247, 214, 0.58),
    0 0 8px rgba(255, 201, 92, 0.34),
    0 0 18px rgba(222, 154, 38, 0.20);
  filter: saturate(1.08);
}

.hero-visual::after,
.about-visual::after {
  z-index: 2;
}

@media (max-width: 680px) {
  .hero-visual::before,
  .about-visual::before {
    padding: 4.05px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255, 247, 214, 0.54),
      0 0 7px rgba(255, 201, 92, 0.30),
      0 0 14px rgba(222, 154, 38, 0.18);
  }
}


/* V14 — remove halo branco e reforça o aspecto metálico dourado. */
.hero-visual,
.about-visual {
  background: transparent;
  border: 0;
  box-shadow:
    0 26px 70px rgba(63, 52, 117, 0.18),
    0 8px 24px rgba(87, 70, 149, 0.10),
    0 0 22px rgba(205, 151, 42, 0.12);
}

.hero-visual::before,
.about-visual::before {
  background:
    conic-gradient(
      from 218deg,
      #5e3c08 0deg,
      #8d6011 12deg,
      #d8a13c 22deg,
      #fff1bd 28deg,
      #fffaf0 31deg,
      #b67a17 37deg,
      #71490a 50deg,
      #c99027 67deg,
      #f3cb73 82deg,
      #fff6dd 90deg,
      #a36d12 101deg,
      #6a4309 115deg,
      #d7a345 136deg,
      #fff4cc 148deg,
      #fffdf7 152deg,
      #bb8220 160deg,
      #7b5210 178deg,
      #d9a94d 202deg,
      #fff0be 214deg,
      #b77e1b 224deg,
      #694309 238deg,
      #cb9531 258deg,
      #f5d07c 276deg,
      #fff7e2 286deg,
      #a77014 298deg,
      #663f09 315deg,
      #c78e25 334deg,
      #fff1c0 348deg,
      #5e3c08 360deg
    );
  box-shadow:
    inset 0 0 0 0.55px rgba(120, 78, 12, 0.52),
    0 0 10px rgba(255, 204, 92, 0.44),
    0 0 22px rgba(208, 146, 31, 0.30),
    0 0 38px rgba(169, 106, 14, 0.14);
  filter: saturate(1.14) contrast(1.08);
}

@media (max-width: 680px) {
  .hero-visual,
  .about-visual {
    box-shadow:
      0 22px 54px rgba(63, 52, 117, 0.16),
      0 8px 22px rgba(87, 70, 149, 0.10),
      0 0 18px rgba(205, 151, 42, 0.12);
  }

  .hero-visual::before,
  .about-visual::before {
    box-shadow:
      inset 0 0 0 0.5px rgba(120, 78, 12, 0.50),
      0 0 8px rgba(255, 204, 92, 0.38),
      0 0 16px rgba(208, 146, 31, 0.24),
      0 0 28px rgba(169, 106, 14, 0.12);
  }
}


/* V15 — ajustes de conteúdo, contato e borda dourada também na imagem de contato. */
.how-it-works .section-head {
  max-width: 100%;
  margin-bottom: 34px;
}

.how-it-works .section-head .eyebrow,
.how-it-works .section-head p {
  display: none;
}

.how-it-works .section-head h2 {
  margin-top: 0;
}

.step-card p {
  max-width: none;
}

.contact-info > .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
}

.contact-info .contact-items {
  margin-top: 6px;
}

.contact-item a,
.contact-item span {
  word-break: break-word;
}

.hero-visual,
.about-visual,
.contact-visual {
  isolation: isolate;
}

.hero-visual::before,
.about-visual::before,
.contact-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 4.8px;
  pointer-events: none;
  background:
    conic-gradient(
      from 218deg,
      #5e3c08 0deg,
      #8d6011 12deg,
      #d8a13c 22deg,
      #fff1bd 28deg,
      #fffaf0 31deg,
      #b67a17 37deg,
      #71490a 50deg,
      #c99027 67deg,
      #f3cb73 82deg,
      #fff6dd 90deg,
      #a36d12 101deg,
      #6a4309 115deg,
      #d7a345 136deg,
      #fff4cc 148deg,
      #fffdf7 152deg,
      #bb8220 160deg,
      #7b5210 178deg,
      #d9a94d 202deg,
      #fff0be 214deg,
      #b77e1b 224deg,
      #694309 238deg,
      #cb9531 258deg,
      #f5d07c 276deg,
      #fff7e2 286deg,
      #a77014 298deg,
      #663f09 315deg,
      #c78e25 334deg,
      #fff1c0 348deg,
      #5e3c08 360deg
    );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  box-shadow:
    inset 0 0 0 0.55px rgba(120, 78, 12, 0.52),
    0 0 10px rgba(255, 204, 92, 0.44),
    0 0 22px rgba(208, 146, 31, 0.30),
    0 0 38px rgba(169, 106, 14, 0.14);
  filter: saturate(1.14) contrast(1.08);
}

.hero-visual::after,
.about-visual::after,
.contact-visual::after {
  z-index: 2;
}

@media (max-width: 680px) {
  .hero-visual::before,
  .about-visual::before,
  .contact-visual::before {
    padding: 4.05px;
    box-shadow:
      inset 0 0 0 0.5px rgba(120, 78, 12, 0.50),
      0 0 8px rgba(255, 204, 92, 0.38),
      0 0 16px rgba(208, 146, 31, 0.24),
      0 0 28px rgba(169, 106, 14, 0.12);
  }
}


/* V16 — restaura o estilo do heading da seção Como funciona e usa a nova imagem de contato. */
.how-it-works .section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.how-it-works .section-head .eyebrow {
  display: inline-flex;
}

.how-it-works .section-head h2,
.how-it-works .section-head p {
  display: none;
}


/* V17 — remove a borda/halo branco da imagem de contato. */
.contact-visual {
  background: transparent;
  border: 0;
  box-shadow:
    0 24px 60px rgba(63, 52, 117, 0.16),
    0 10px 28px rgba(87, 70, 149, 0.10),
    0 0 20px rgba(205, 151, 42, 0.10);
}


/* V18 — box-shadows em índigo profundo nos cards destacados pelo cliente. */
.about-text {
  box-shadow:
    0 24px 64px rgba(62, 58, 161, 0.18),
    0 10px 26px rgba(62, 58, 161, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
}

.step-card {
  box-shadow:
    0 20px 44px rgba(62, 58, 161, 0.18),
    0 8px 22px rgba(62, 58, 161, 0.14),
    inset 0 1px 0 rgba(242, 241, 253, 0.06) !important;
}

.step-card:hover {
  box-shadow:
    0 24px 52px rgba(62, 58, 161, 0.24),
    0 10px 28px rgba(62, 58, 161, 0.18),
    inset 0 1px 0 rgba(242, 241, 253, 0.08) !important;
}

.contact-item {
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.70));
  box-shadow:
    0 18px 40px rgba(62, 58, 161, 0.16),
    0 8px 22px rgba(62, 58, 161, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  padding: 18px 18px 18px 16px;
}

@media (max-width: 680px) {
  .about-text {
    box-shadow:
      0 18px 44px rgba(62, 58, 161, 0.16),
      0 8px 18px rgba(62, 58, 161, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
  }

  .step-card {
    box-shadow:
      0 16px 34px rgba(62, 58, 161, 0.16),
      0 6px 16px rgba(62, 58, 161, 0.12),
      inset 0 1px 0 rgba(242, 241, 253, 0.06) !important;
    padding: 24px 22px 22px;
  }

  .contact-item {
    border-radius: 18px;
    padding: 16px 16px 16px 14px;
    box-shadow:
      0 14px 30px rgba(62, 58, 161, 0.14),
      0 6px 14px rgba(62, 58, 161, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}


/* V19 — eyebrow labels 20% maiores e risquinho restaurado em Contato. */
.eyebrow {
  font-size: 13px;
}

.carousel-title span {
  font-size: 13px;
}

.contact-info > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


/* V20 — imagens do carrossel de destaque 20% maiores. */
.featured-carousel {
  --featured-card-height: 234px;
  width: min(760px, 94vw);
  height: 340px;
}

@media (max-width: 760px) {
  .featured-carousel {
    --featured-card-height: 163px;
    width: min(430px, 96vw);
    height: 220px;
  }
}


/* V22 — nota abaixo do título da seção Produtos. */
.products-note {
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6555a0;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 680px) {
  .products-note {
    margin-top: 10px;
    font-size: 13px;
  }
}


/* ========================================================================== 
   V25 — REVISÃO RESPONSIVA FINAL (TABLET E CELULAR)
   ========================================================================== */
:root {
  --nav-height: 102px;
}

html {
  scroll-padding-top: calc(var(--nav-height) + 14px);
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 14px);
}

.mobile-menu-whatsapp {
  display: none;
}

@media (max-width: 960px) {
  .nav-inner {
    min-height: 92px;
    padding: 7px 24px;
  }

  .logo {
    width: 126px;
    height: 84px;
  }

  .burger {
    display: flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 13px;
    position: relative;
    z-index: 4;
  }

  .nav-links.is-open {
    top: var(--nav-height);
    height: calc(100dvh - var(--nav-height));
    padding: 26px 24px max(26px, env(safe-area-inset-bottom));
    gap: 6px;
    background:
      radial-gradient(circle at 14% 8%, rgba(158, 118, 218, 0.14), transparent 30%),
      radial-gradient(circle at 88% 88%, rgba(112, 151, 232, 0.13), transparent 32%),
      linear-gradient(155deg, rgba(250, 248, 255, 0.985), rgba(241, 240, 253, 0.975));
    border-top: 1px solid rgba(82, 65, 145, 0.16);
    box-shadow: 0 24px 60px rgba(55, 42, 108, 0.18);
    backdrop-filter: blur(28px) saturate(1.22);
    -webkit-backdrop-filter: blur(28px) saturate(1.22);
    overscroll-behavior: contain;
  }

  .nav-links.is-open::after {
    content: none !important;
    display: none !important;
  }

  .nav-links.is-open > li {
    width: 100%;
  }

  .nav-links.is-open > li > a:not(.mobile-menu-whatsapp__link) {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 4px;
    font-size: 17px;
    line-height: 1.25;
    color: #453b70;
  }

  .nav-links.is-open > li > a:not(.mobile-menu-whatsapp__link)::after {
    bottom: 6px;
  }

  .mobile-menu-whatsapp {
    display: block;
    margin-top: 14px;
  }

  .mobile-menu-whatsapp__link {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #7097E8, #5645A9);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 14px 32px rgba(62, 58, 161, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    font-size: 15px !important;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .mobile-menu-whatsapp__link::after {
    display: none !important;
  }

  .mobile-menu-whatsapp__link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex: 0 0 auto;
  }

  body.menu-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 34px);
  }

  .link-underline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .contact-item a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
  }

  .image-lightbox__close {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-height: 88px;
  }

  .nav-inner {
    min-height: 88px;
    padding: 6px 16px;
  }

  .logo {
    width: 112px;
    height: 76px;
  }

  .nav-links.is-open {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 28px);
  }

  .btn-row {
    gap: 12px 18px;
  }

  .featured-carousel {
    width: calc(100vw - 24px);
    max-width: 406px;
    overflow: visible;
  }

  .whatsapp-float {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .contact-item {
    align-items: center;
  }

  .contact-item > div:last-child {
    min-width: 0;
    flex: 1;
  }

  .contact-item a,
  .contact-item span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo {
    width: 104px;
    height: 72px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .btn-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-primary.ajales-btn,
  .btn-primary.ajales-btn .ajales-btn__label {
    width: 100%;
  }

  .link-underline {
    width: auto;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }
}
