:root {
  --bg: #03090f;
  --bg-soft: #03090f;
  --surface: #0b1d29;
  --surface-2: #102938;
  --line: #173c50;
  --text: #f8fafc;
  --muted: #a9bac7;
  --yellow: #ffd21f;
  --yellow-dark: #e7b900;
  --cyan: #20c8f5;
  --green: #25d366;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(32, 200, 245, 0.08), transparent 25rem),
    var(--bg);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(90%, var(--container));
  margin-inline: auto;
}

/* ========================================
   SKIP LINK (ACESSIBILIDADE)
======================================== */

.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  border-radius: 10px;
  color: #071018;
  background: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ========================================
   MENU SUPERIOR FLUTUANTE
======================================== */

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 60;

  width: min(calc(100% - 28px), var(--container));

  transform: translateX(-50%);
}

.header-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 10px 12px 10px 18px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;

  background: rgba(3, 9, 15, 0.56);

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* Marca da Iluminar */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 54px;

  object-fit: contain;
}

.brand-copy {
  display: grid;

  line-height: 1.05;
}

.brand-name {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-tagline {
  margin-top: 7px;

  color: var(--yellow);

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Botão que abre a barra lateral */

.menu-toggle {
  position: static;

  width: 48px;
  height: 48px;
  flex: 0 0 auto;

  display: grid;
  place-content: center;
  gap: 5px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.07);

  box-shadow: none;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.menu-toggle span {
  width: 22px;
  height: 2px;

  border-radius: 999px;

  background: var(--yellow);
}

.menu-toggle:hover {
  border-color: rgba(255, 210, 31, 0.72);
  background: rgba(255, 255, 255, 0.11);

  transform: translateY(-1px);
}

.menu-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.side-menu {
  position: fixed;
  z-index: 80;
  inset: 0 auto 0 0;
  width: min(88vw, 370px);
  padding: 28px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(32, 200, 245, 0.08), transparent 30%),
    var(--bg-soft);
  box-shadow: var(--shadow);
  transform: translateX(-102%);
  transition: transform 0.28s ease;
}

.menu-open .menu-overlay {
  visibility: visible;
  opacity: 1;
}

.menu-open .side-menu {
  transform: translateX(0);
}

.side-menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 44px;
}

.side-menu .brand {
  align-items: flex-start;
}

.menu-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.menu-kicker {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.side-nav {
  display: grid;
  gap: 14px;
}

.side-nav a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.side-nav a:hover,
.side-nav a[aria-current="page"] {
  border-color: var(--yellow);
  background: var(--surface-2);
  transform: translateX(4px);
}

.nav-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071018;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
}

.nav-copy {
  display: grid;
}

.nav-copy strong {
  font-size: 0.95rem;
}

.nav-copy small {
  color: var(--muted);
  font-size: 0.7rem;
}

.nav-arrow {
  color: var(--yellow);
  font-size: 1.2rem;
}

.menu-contact {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-contact strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

.home-hero {
  position: relative;
  min-height: auto;

  display: grid;
  place-items: start center;

  padding-top: 100px;

  overflow: hidden;
  isolation: isolate;

  background: var(--bg);
}

.aurora-background {
  position: absolute;
  z-index: 0;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
  pointer-events: none;
}

.aurora-background canvas {
  display: block;

  width: 100%;
  height: 100%;
}

/* Camada escura para manter o texto legível */

.home-hero::after {
  content: "";

  position: absolute;
  z-index: 1;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(180deg,
      rgba(3, 9, 15, 0.12) 0%,
      rgba(3, 9, 15, 0.28) 48%,
      rgba(3, 9, 15, 0.7) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 2;

  max-width: var(--container);
  padding: 40px 0 40px;
}

/* Grade do novo hero: textos à esquerda + carrossel à direita.
   O CTA de WhatsApp fica na coluna esquerda, abaixo do texto;
   no mobile ele é reposicionado para depois do carrossel. */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "copy  carousel"
    "cta   carousel";
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: 24px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  text-align: left;
}

.hero-carousel {
  grid-area: carousel;
}

.hero-cta {
  grid-area: cta;
  align-self: start;
  justify-self: start;

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.hero-cta svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.hero-copy .lead {
  margin-inline: 0;
}

.hero-copy .actions {
  justify-content: flex-start;
}

.home-hero h1 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}

.home-hero .lead {
  margin-top: 14px;
}

.home-hero .actions {
  margin-top: 18px;
}

.home-hero .btn {
  min-height: 46px;
  padding: 11px 19px;
}

/* CTA principal do hero — mantém o tamanho padrão do .btn
   para ser o destaque principal da página */
.home-hero .hero-cta {
  min-height: 54px;
  padding: 14px 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  line-height: 1.15;
}

.home-hero h1,
.display-title {
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.highlight {
  color: var(--yellow);
}

.lead {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-primary {
  color: #081017;
  background: var(--yellow);
}

.btn-whatsapp {
  color: #fff;
  background: var(--green);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(11, 29, 41, 0.75);
}

.btn-instagram {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg,
      #405de6 0%,
      #833ab4 32%,
      #c13584 52%,
      #e1306c 68%,
      #fd1d1d 84%,
      #f77737 100%);
  box-shadow: 0 12px 28px rgba(193, 53, 132, 0.25);
}

.btn-instagram:hover {
  box-shadow: 0 15px 34px rgba(193, 53, 132, 0.38);
}

.home-services {
  padding: 88px 0;
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.035em;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  text-decoration: none;
  position: relative;
  grid-column: span 3;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  isolation: isolate;

}

.service-card:nth-child(n + 3) {
  grid-column: span 2;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 12, 18, 0.06) 20%, rgba(3, 12, 18, 0.92) 100%);
}

.service-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:nth-child(2) img {
  object-position: 58% center;
}

.service-card:nth-child(4) img {
  object-position: 42% center;
}

.service-card:nth-child(5) img {
  object-position: 28% center;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card-content {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.service-card-number {
  display: block;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 204, 0, 0.42);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(3, 12, 18, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card h3 {
  max-width: 520px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.service-card p {
  max-width: 540px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card:focus-within {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.service-hero {
  min-height: clamp(480px, 62svh, 540px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  padding-top: 100px;
  border-bottom: 1px solid var(--line);
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px max(5vw, calc((100vw - var(--container)) / 2)) 60px;
}

.service-hero-media {
  position: relative;
  min-height: clamp(480px, 62svh, 540px);
  overflow: hidden;
}

.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 25%),
    linear-gradient(0deg, rgba(3, 9, 15, 0.28), transparent 45%);
}

.service-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-pill {
  width: fit-content;
  margin-top: 30px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #071018;
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-hero .display-title {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.08;
}

.service-hero .lead {
  margin-top: 18px;
}

.service-hero .hero-pill {
  margin-top: 20px;
}

.service-hero .actions {
  margin-top: 24px;
}

.service-hero .btn {
  min-height: 50px;
  padding: 12px 20px;
}

.content-section {
  padding: 96px 0;
}

.content-section.alt {
  background: var(--bg-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.benefit-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #071018;
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
}

.feature-copy>p {
  margin-top: 18px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #061017;
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.passport {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(130deg, rgba(32, 200, 245, 0.1), transparent 42%),
    var(--surface);
}

.passport::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: var(--yellow);
}

.passport-grid {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 44px;
  align-items: end;
}

.passport h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.passport-side {
  padding-left: 28px;
  border-left: 2px solid var(--line);
}

.passport-side span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.passport-side strong {
  display: block;
  margin-top: 14px;
  font-size: 1.45rem;
  line-height: 1.3;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
}

.product-media {
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  background: #fff;
}

.product-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 26px;
}

.product-brand {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 12px;
  font-size: 1.35rem;
}

.product-card p {
  min-height: 74px;
  color: var(--muted);
  font-size: 0.88rem;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0;
}

.spec-row span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
}

.price-label {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.price {
  display: block;
  margin-top: 4px;
  color: var(--yellow);
  font-size: 1.75rem;
  font-weight: 800;
}

.installation-offer {
  display: grid;
  gap: 20px;
}

.offer-card {
  padding: 38px;
  border-radius: 28px;
}

.offer-card.white {
  color: #0b1720;
  background: #f8fafc;
}

.offer-card.yellow {
  color: #0b1720;
  background: var(--yellow);
}

.offer-card.dark {
  border: 1px solid var(--line);
  background: var(--surface);
}

.offer-card h2 {
  max-width: 850px;
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
}

.offer-price {
  display: block;
  margin: 15px 0 6px;
  color: var(--yellow-dark);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
}

.offer-card.yellow h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.offer-card p {
  margin-top: 10px;
}

.offer-card.white .check-list li,
.offer-card.yellow p {
  color: #263743;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: process;
}

.process-item {
  position: relative;
  min-height: 120px;
  padding: 24px 24px 24px 80px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  color: var(--muted);
  counter-increment: process;
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 23px;
  left: 22px;
  color: var(--yellow);
  font-weight: 800;
}

.health-note {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.health-card {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.health-card h3 {
  color: var(--yellow);
  font-size: 1rem;
}

.health-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.disclaimer {
  margin-top: 22px;
  color: #7f93a1;
  font-size: 0.74rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pricing-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.pricing-card.featured {
  color: #071018;
  border-color: var(--yellow);
  background: var(--yellow);
}

.pricing-card .price {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.pricing-card.featured .price,
.pricing-card.featured .price-label,
.pricing-card.featured p {
  color: #071018;
}

.daily-price {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 210, 31, 0.1);
  font-size: 0.85rem;
  font-weight: 800;
}

.pricing-card.featured .daily-price {
  color: #fff;
  background: #071018;
}

.cta-band {
  padding: 78px 0;
  color: #071018;
  background: var(--yellow);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.cta-band p {
  margin-top: 12px;
  color: #263743;
}

.site-footer {
  padding: 48px 0 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.footer-phones {
  text-align: right;
}

.footer-phones a {
  display: block;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.instagram-float,
.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 20px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-float {
  bottom: 94px;
  background: linear-gradient(135deg,
      #405de6 0%,
      #833ab4 32%,
      #c13584 52%,
      #e1306c 68%,
      #fd1d1d 84%,
      #f77737 100%);
}

.whatsapp-float {
  bottom: 20px;
  background: var(--green);
}

.instagram-float:hover,
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.instagram-float svg,
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(n + 3) {
    grid-column: span 1;
  }

  .service-card:last-child {
    grid-column: span 2;
  }

  .service-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    padding: 42px 5vw 60px;
  }

  .service-hero-media {
    min-height: 560px;
  }

  .service-hero-media::after {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 28%);
  }

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

  .feature-panel,
  .passport-grid {
    grid-template-columns: 1fr;
  }

  .passport-side {
    padding: 24px 0 0;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .product-media {
    height: 100%;
    min-height: 330px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
    padding: 8px 9px 8px 14px;
    border-radius: 18px;
  }

  .site-header .brand {
    gap: 9px;
  }

  .site-header .brand img {
    width: 35px;
    height: 44px;
  }

  .site-header .brand-name {
    font-size: 0.94rem;
  }

  .site-header .brand-tagline {
    margin-top: 5px;
    font-size: 0.51rem;
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .side-menu {
    padding: 22px;
  }

  .home-hero {
    padding-top: 90px;
  }

  .aurora-background {
    inset: -10% -35%;
    width: 170%;
    height: 120%;
  }

  .home-hero::after {
    background:
      linear-gradient(180deg,
        rgba(3, 9, 15, 0.08) 0%,
        rgba(3, 9, 15, 0.3) 45%,
        rgba(3, 9, 15, 0.78) 100%);
  }

  .home-hero-content {
    padding: 24px 0 28px;
  }

  .actions,
  .home-hero .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .home-services,
  .content-section {
    padding: 70px 0;
  }

  .service-card-grid,
  .benefit-grid,
  .benefit-grid.three,
  .health-note,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(n + 3),
  .service-card:last-child {
    grid-column: span 1;
  }

  .service-card,
  .service-card-content {
    min-height: 360px;
  }

  .service-card-content {
    padding: 24px;
  }

  .service-hero-copy {
    padding-top: 42px;
  }

  .service-hero-media {
    min-height: 470px;
  }

  .feature-panel {
    gap: 28px;
  }

  .feature-media img {
    min-height: 300px;
  }

  .passport,
  .offer-card,
  .pricing-card {
    padding: 27px;
  }

  .product-card {
    display: block;
  }

  .product-media {
    height: 270px;
    min-height: 0;
  }

  .product-card p {
    min-height: 0;
  }

  .cta-band-inner,
  .footer-grid {
    display: grid;
  }

  .cta-band .btn {
    color: #fff;
    background: #071018;
  }

  .footer-phones {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}