:root {
  --bg: #080808;
  --card: #111111;

  --primary: #ffffff;
  --primary-text: #111111;
  --primary-muted: rgba(17, 17, 17, 0.68);

  --text: #f8f8f8;
  --muted: #a3a3a3;

  --soft: #1a1a1a;
  --soft-hover: #242424;
  --line: rgba(255, 255, 255, 0.14);

  --button-light-bg: #ffffff;
  --button-light-text: #111111;

  --focus-ring: rgba(255, 255, 255, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* BADGE */
.minimal-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  padding: 0.55rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

/* BUTTONS */
.btn-primary,
.btn-soft,
.btn-outline,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.9rem 1.5rem;
}

.btn-soft {
  background: var(--soft);
  color: var(--text);
  padding: 0.9rem 1.5rem;
}

.btn-outline {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.35rem;
}

.btn-primary:hover,
.btn-soft:hover,
.btn-outline:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.btn-soft:hover,
.btn-outline:hover {
  background: var(--soft-hover);
}

/* SECTIONS */
.section-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-label-dark {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* SERVICES */
.service-row {
  display: grid;
  gap: 1rem;
  padding: 1.6rem 0;
  transition: transform 0.25s ease;
}

.service-row:hover {
  transform: translateX(6px);
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 90px 1fr 1.1fr;
    align-items: start;
    padding: 2rem 0;
  }
}

.service-index {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-title {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.15;
}

.service-desc {
  color: var(--muted);
  line-height: 1.7;
}

/* STATS INLINE */
.stat-inline {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stat-inline-value {
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-inline-label {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

/* LOCATION */
.location-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 2rem;
  background: #000;
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.75);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.62),
    rgba(0, 0, 0, 0.28)
  );
  pointer-events: none;
}

.location-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  padding: 1.5rem;
}

/* FLOATING */
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* ACCESSIBILITY */
a:focus-visible {
  outline: 4px solid var(--focus-ring);
  outline-offset: 4px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 640px) {
  .btn-primary,
  .btn-soft {
    width: 100%;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
}