@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/montserrat-extrabold-latin.woff2") format("woff2");
}
:root {
  --color-yellow: #ffc400;
  --color-ink: #11120f;
  --color-paper: #faf8f3;
  --color-white: #ffffff;
  --font-body: "Inter", Arial, sans-serif;
  --font-heading: "Montserrat", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  font-family: var(--font-body);
}
img {
  display: block;
  max-width: 100%;
}

main,
section,
article,
div {
  min-width: 0;
}
a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}
h1, h2, p {
  margin-top: 0;
}
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
}
.section {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 5vw, 5.5rem);
}
.eyebrow {
  color: var(--color-yellow);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.text-yellow {
  color: var(--color-yellow);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.6rem;
  padding: 0 1.5rem;
  border: 2px solid #fff;
  border-radius: 0.35rem;
  color: var(--color-white);
  background: var(--color-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #ffdc48;
}
.button--outline {
  border-color: currentColor;
  color: var(--color-black);
  background: transparent;
}
.button--dark {
  color: var(--color-white);
  background: var(--color-ink);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--color-ink);
  background: var(--color-yellow);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 20;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  padding: 0.7rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0.7rem 1.6rem #11120f55;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #128c4b;
  transform: scale(1.08);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 480px) {
  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .button {
    max-width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    text-align: center;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
