:root {
  --brand-primary: #008a97;
  --brand-primary-dark: #006069;
  --brand-hero-gradient: radial-gradient(54.72% 54.72% at 50% 54.58%, #018798 0%, #00525d 100%);
  --brand-instagram: #db8016;
  --brand-whatsapp: #11b247;
  --surface: #ffffff;
  --surface-alt: linear-gradient(329deg, #e2e2e2 0%, #ffffff 100%);
  --text: #000000;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

a {
  color: inherit;
}

.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-hero-gradient);
}

.hero__inner {
  width: min(1140px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.hero__logo {
  width: min(27%, 320px);
  min-width: 210px;
}

.content {
  background: var(--surface-alt);
}

.content__inner {
  width: min(1140px, calc(100vw - 48px));
  min-height: 560px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: center;
}

.content__copy,
.content__media {
  opacity: 1;
  transform: none;
}

.content__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content__block + .content__block {
  margin-top: 20px;
}

.content__copy h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 600;
}

.content__copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
}

.content__copy p:last-child {
  margin-bottom: 0;
}

.content__copy a {
  text-decoration: none;
}

.content__copy a:hover,
.content__copy a:focus-visible {
  text-decoration: underline;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.button--directions {
  background: var(--brand-primary-dark);
}

.button--instagram {
  background: var(--brand-instagram);
}

.button--whatsapp {
  background: var(--brand-whatsapp);
}

.media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.media-link:hover,
.media-link:focus-visible {
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.02);
}

.store-image {
  width: min(360px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

.footer {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-hero-gradient);
  padding: 12px 24px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 767px) {
  .hero {
    min-height: 270px;
  }

  .hero__logo {
    width: min(60%, 280px);
    min-width: 180px;
  }

  .content__inner {
    width: min(100vw - 32px, 1140px);
    min-height: auto;
    padding: 28px 24px 36px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content__copy p {
    text-align: left;
  }

  .actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .store-image {
    width: min(320px, 82vw);
  }

  .footer p {
    font-size: 12px;
  }
}
