:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b6b6b;
  --accent: #b78b4a;
  --surface: #f7f6f4;
  --border: #e8e6e2;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.logo-fallback {
  width: 190px;
  height: 48px;
  border: 1px dashed #bfbfbf;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 68vh;
  background:
    linear-gradient(rgba(20, 20, 20, 0.35), rgba(20, 20, 20, 0.35)),
    url("b_shutterstock_403541875jpg_1587997717.jpg")
    center/cover no-repeat;
  display: grid;
  align-items: end;
}

.hero-panel {
  margin: 0 auto 34px;
  width: min(1120px, 92vw);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.1;
}

.lead {
  margin: 0;
  color: #232323;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 75ch;
}

section {
  padding: 56px 0;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.single-paragraph {
  font-size: 1rem;
  line-height: 1.75;
}

.three-columns {
  column-count: 3;
  column-gap: 36px;
}

.about-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.image-separator {
  padding: 0 0 56px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.image-tile {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05));
}

.labels-wrap {
  background: #141414;
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid #272727;
  border-bottom: 1px solid #272727;
}

.labels-track {
  display: flex;
  white-space: nowrap;
  animation: fly 32s linear infinite;
  will-change: transform;
  font-weight: 700;
  letter-spacing: .01em;
}

.labels-track span {
  display: inline-flex;
  align-items: center;
  margin-right: 48px;
  color: #f2f2f2;
  opacity: .96;
}

.labels-track span::before {
  content: "•";
  margin-right: 12px;
  color: var(--accent);
}

@keyframes fly {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.social-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: #d6d6d6;
}

.btn.whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn.instagram {
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #833ab4, #c13584, #e1306c, #fd1d1d, #f77737);
}

.float-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
  font-size: 28px;
}

footer {
  padding: 22px 0 34px;
  font-size: 14px;
  color: var(--muted);
}

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

.footer-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-menu a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .cards, .image-grid {
    grid-template-columns: 1fr;
  }

  .three-columns {
    column-count: 2;
  }

  .topbar-inner {
    min-height: 68px;
  }

  .logo {
    width: 150px;
  }
}

@media (max-width: 620px) {
  .hero-panel {
    padding: 18px;
  }

  .three-columns {
    column-count: 1;
  }

  .float-whatsapp {
    width: 54px;
    height: 54px;
  }
}
