:root {
  --red: #ba0025;
  --red-dark: #98001e;
  --gold: #cf9838;
  --ink: #303033;
  --muted: #626268;
  --cream: #fcfaf6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 255, 255, 0.95),
      transparent 34rem
    ),
    var(--cream);
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  height: clamp(230px, 30vw, 334px);
  overflow: hidden;
  background: #eee8df;
  margin-bottom: 2rem;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro {
  min-height: calc(100vh - clamp(230px, 30vw, 430px));
  padding: 0 24px 44px;
  text-align: center;
}

.brand {
  width: min(310px, 66vw);
  margin: clamp(-7px, -0.5vw, -2px) auto 6px;
}

.brand__logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 5px rgba(65, 28, 11, 0.15));
}

.intro__content {
  width: min(780px, 100%);
  margin: 0 auto;
}

h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.75rem, 5.1vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro__lead {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
}

.intro__text {
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1rem);
  line-height: 1.65;
}

.cta {
  display: block;
  width: min(390px, 100%);
  margin: 34px auto 0;
  padding: 20px 28px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #c8002b, #ad001e);
  box-shadow: 0 10px 24px rgba(186, 0, 37, 0.18);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.cta:hover {
  background: linear-gradient(135deg, #d20835, var(--red-dark));
  box-shadow: 0 14px 28px rgba(186, 0, 37, 0.26);
  transform: translateY(-2px);
}

.cta:focus-visible,
.social a:focus-visible {
  outline: 3px solid rgba(186, 0, 37, 0.35);
  outline-offset: 4px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 42px);
  margin: 41px 0 0;
}

.social a {
  color: var(--gold);
}

.social svg {
  width: 38px;
  height: 38px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social .social__whatsapp {
  width: 38px;
  height: 38px;
  transition: transform 0.2s ease;
}

.social a:nth-of-type(2) svg {
  fill: currentColor;
  stroke: none;
}

.social a:hover {
  color: var(--red);
}

.social a:hover svg {
  transform: translateY(-2px);
}

.social a:hover .social__whatsapp {
  transform: translateY(-2px);
}

.social span {
  width: 1px;
  height: 33px;
  background: rgba(207, 152, 56, 0.75);
}

@media (max-width: 640px) {
  .hero {
    height: 210px;
  }

  .intro {
    min-height: auto;
    padding: 0 18px 34px;
  }

  .brand {
    width: 218px;
    margin-bottom: 2px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .intro__lead {
    margin-top: 12px;
  }

  .intro__text {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .cta {
    margin-top: 26px;
    padding: 17px 22px;
  }

  .social {
    margin-top: 31px;
  }

  .social svg {
    width: 33px;
    height: 33px;
  }

  .social .social__whatsapp {
    width: 33px;
    height: 33px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media (max-width: 1366px) {
  .hero {
    height: clamp(230px, 30vw, 204px);
  }
  .brand {
    width: min(250px, 30vw);
    margin: -1rem auto 1rem;
  }
  h1 {
    font-size: clamp(2.75rem, 5.1vw, 2.55rem);
  }
  .cta {
    margin-top: 1rem;
  }
  .intro__lead {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: clamp(1.2rem, 2.1vw, 1.3rem);
  }
  .intro__text {
    margin-top: 12px;
  }
}
