:root {
  --color-ink: #111827;
  --color-muted: #5f6b7a;
  --color-line: #d9e0e8;
  --color-surface: #ffffff;
  --color-soft: #f4f7fa;
  --color-primary: #b91c1c;
  --color-primary-dark: #7f1d1d;
  --color-accent: #111827;
  --color-whatsapp: #25d366;
  --color-phone: #0d6efd;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --container: 1120px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img,
svg,
iframe {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.section {
  padding: 78px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.logo__text {
  white-space: nowrap;
  font-size: 1.05rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #263241;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-dark);
  background: #fee2e2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-ink);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 92px 0 110px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(9, 12, 18, 0.92) 0%, rgba(17, 24, 39, 0.76) 48%, rgba(17, 24, 39, 0.38) 100%),
    url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.hero__content {
  max-width: 880px;
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
}

.hero .section-kicker {
  color: #fecaca;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

.hero__text {
  max-width: 680px;
  margin: 22px 0 0;
  color: #edf2f7;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--call {
  background: var(--color-phone);
  box-shadow: 0 14px 34px rgba(13, 110, 253, 0.26);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.contact-section {
  background: var(--color-soft);
}

.contact-layout,
.map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.contact-card,
.info-panel,
.map-wrapper {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card {
  padding: 34px;
}

.contact-card h2,
.info-panel h2,
.map-layout h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.16;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid var(--color-line);
}

.contact-list span {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-list a,
.contact-list strong {
  color: var(--color-ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-list a:hover {
  color: var(--color-primary);
}

.info-panel img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.info-panel__body {
  padding: 30px;
}

.info-panel__body p,
.map-layout p {
  color: var(--color-muted);
  margin: 12px 0 0;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.brand-tags span {
  padding: 7px 10px;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: var(--color-primary-dark);
  background: #fff1f2;
  font-size: 0.9rem;
  font-weight: 900;
}

.map-section {
  background: #ffffff;
}

.map-layout {
  align-items: center;
}

.map-wrapper {
  min-height: 390px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  border: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 18, 32, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.floating-btn svg {
  width: 29px;
  height: 29px;
}

.floating-btn--whatsapp {
  background: var(--color-whatsapp);
}

.floating-btn--phone {
  background: var(--color-phone);
}

.site-footer {
  padding: 24px 0;
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 90px;
  }

  .hero__content {
    margin-inline: auto;
  }

  .contact-layout,
  .map-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-card,
  .info-panel__body {
    padding: 24px;
  }

  .info-panel img {
    height: 240px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }
}
