:root {
  color-scheme: dark;
  --bg: #080806;
  --panel: rgba(255, 226, 63, 0.055);
  --panel-strong: rgba(255, 226, 63, 0.105);
  --text: #fffdf2;
  --muted: #c9c0a5;
  --line: rgba(255, 226, 63, 0.18);
  --accent: #ffe13b;
  --accent-soft: #ffc83d;
  --ink: #080806;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 225, 59, 0.2), transparent 32rem),
    radial-gradient(circle at 88% 78%, rgba(255, 200, 61, 0.16), transparent 28rem),
    linear-gradient(135deg, #080806 0%, #171409 42%, #0b0a07 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 225, 59, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 225, 59, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 64px 0 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero__content {
  display: grid;
  justify-items: start;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo {
  width: min(520px, 100%);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 16px 36px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 28px rgba(255, 225, 59, 0.12));
}

h1 {
  max-width: 720px;
  margin: clamp(30px, 6vw, 58px) 0 0;
  font-size: clamp(2.45rem, 6.1vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.05rem);
  line-height: 1.68;
}

.lead strong,
.lead span {
  display: block;
  color: var(--text);
  font-weight: 800;
}

.lead strong {
  margin-bottom: 10px;
}

.lead span {
  margin-top: 14px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  margin-top: 36px;
}

.whatsapp-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff176, #ffd21f 48%, #f3b81b);
  box-shadow: 0 18px 38px rgba(255, 225, 59, 0.24);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255, 225, 59, 0.34);
}

.whatsapp-button:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(242, 193, 102, 0.88);
  outline-offset: 4px;
}

.whatsapp-button__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 8, 6, 0.9);
}

.whatsapp-button svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: #25d366;
}

.service-panel {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 225, 59, 0.09), rgba(255, 225, 59, 0.025)),
    rgba(0, 0, 0, 0.24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #fff176, var(--accent), #171409);
}

.service-panel__title {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 226, 63, 0.13);
  border-radius: 8px;
  color: #fff8d8;
  background:
    linear-gradient(135deg, rgba(255, 225, 59, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.services li::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(255, 241, 118, 0.26), rgba(255, 210, 31, 0.06));
  opacity: 0;
  transform: translateX(-18%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.services li:hover {
  color: #fffbea;
  border-color: rgba(255, 225, 59, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 225, 59, 0.16), rgba(255, 200, 61, 0.045)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(255, 225, 59, 0.12);
  transform: translateY(-3px) rotate(-0.35deg);
  animation: service-pulse 420ms ease;
}

.services li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.services li:nth-child(3),
.services li:nth-child(4),
.services li:nth-child(7),
.services li:nth-child(9) {
  background: var(--panel-strong);
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 10;
  width: 58px;
  height: 58px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ee67d, #16b963);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.36);
}

@keyframes service-pulse {
  0% {
    transform: translateY(0) rotate(0);
  }

  42% {
    transform: translateY(-4px) rotate(0.45deg);
  }

  70% {
    transform: translateY(-2px) rotate(-0.35deg);
  }

  100% {
    transform: translateY(-3px) rotate(-0.35deg);
  }
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: #ffffff;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 251, 248, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .page-shell {
    min-height: auto;
    padding-top: 44px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero__content {
    justify-items: center;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .logo {
    width: min(430px, 100%);
  }

  .lead {
    margin-top: 24px;
  }

  .actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .page-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .page-shell {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  h1 {
    margin-top: 28px;
    font-size: clamp(2.1rem, 12vw, 3.75rem);
  }

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

  .service-panel {
    padding: 22px;
  }

  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }

  .floating-whatsapp {
    display: grid;
  }

  .site-footer {
    padding-bottom: 80px;
  }
}

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