/* ==================================================
   GLOBAL
================================================== */

/* ==================================================
   RESET
================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;

  margin: 0;
  padding: 0;
}

/* ==================================================
   HTML
================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* ==================================================
   BODY
================================================== */

body {
  min-height: 100vh;

  /* background: #f7f8fa; */
  color: #181a1f;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #181a1f;

  font-weight: 700;
  line-height: 1.2;
}

p {
  color: #6b7280;
}

strong,
b {
  font-weight: 700;
}

/* ==================================================
   LINKS
================================================== */

a {
  color: inherit;

  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

/* ==================================================
   LIST
================================================== */

ul,
ol {
  list-style: none;
}

/* ==================================================
   MEDIA
================================================== */

img,
picture,
svg,
video {
  display: block;

  max-width: 100%;
}

img {
  height: auto;
}

/* ==================================================
   FORM
================================================== */

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;

  background: none;

  color: inherit;

  cursor: pointer;
}

/* ==================================================
   CONTAINER
================================================== */

.container {
  width: 100%;
  max-width: 1200px;

  margin-inline: auto;

  padding-inline: 2rem;
}

/* ==================================================
   SECTION
================================================== */

section {
  padding-block: 5rem;
}

/* ==================================================
   SECTION HEADER
================================================== */

.section-header {
  max-width: 700px;

  margin-inline: auto;
  margin-bottom: 3.5rem;

  text-align: center;
}

.section-eyebrow {
  display: inline-block;

  margin-bottom: 0.75rem;

  color: #f59e0b;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1rem;

  color: #181a1f;

  font-size: 2.5rem;
  font-weight: 700;

  line-height: 1.2;
}

.section-description {
  max-width: 600px;

  margin-inline: auto;

  color: #6b7280;

  font-size: 0.95rem;

  line-height: 1.7;
}

/* ==================================================
   TEXT ACCENT
================================================== */

.text-accent {
  color: #f59e0b;
}

/* ==================================================
   BUTTON BASE
================================================== */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  min-height: 2.75rem;

  padding: 0.75rem 1.3rem;

  border: 1px solid transparent;
  border-radius: 0.45rem;

  font-size: 0.875rem;
  font-weight: 600;

  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* ==================================================
   PRIMARY BUTTON
================================================== */

.button--primary {
  background: #14213d;

  color: #ffffff;
}

.button--primary:hover {
  background: #0f1a31;

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.16);
}

/* ==================================================
   SECONDARY BUTTON
================================================== */

.button--secondary {
  background: #ffffff;

  border-color: #d9dde3;

  color: #181a1f;
}

.button--secondary:hover {
  border-color: #f59e0b;

  color: #d97706;

  transform: translateY(-2px);
}

/* ==================================================
   LIGHT BUTTON
================================================== */

.button--light {
  background: #ffffff;

  color: #181a1f;
}

.button--light:hover {
  background: #fffaf0;

  transform: translateY(-2px);
}

/* ==================================================
   WHATSAPP BUTTON
================================================== */

.button--whatsapp {
  background: #25d366;

  color: #ffffff;
}

.button--whatsapp:hover {
  background: #1ebe5d;

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.16);
}

/* ==================================================
   VISUALLY HIDDEN
================================================== */

.visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* ==================================================
   SELECTION
================================================== */

::selection {
  background: #f59e0b;

  color: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

/* ==================================================
   TABLET
   1024px
================================================== */

@media (max-width: 1024px) {
  .container {
    padding-inline: 1.5rem;
  }

  section {
    padding-block: 4.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* ==================================================
   MOBILE
   768px
================================================== */

@media (max-width: 768px) {
  .container {
    padding-inline: 1.25rem;
  }

  section {
    padding-block: 4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-eyebrow {
    font-size: 0.65rem;

    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 0.9rem;
  }
}

/* ==================================================
   SMALL MOBILE
   480px
================================================== */

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  section {
    padding-block: 3.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-eyebrow {
    margin-bottom: 0.6rem;

    font-size: 0.6rem;

    letter-spacing: 0.08em;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 0.85rem;

    line-height: 1.6;
  }

  .button {
    min-height: 2.6rem;

    padding: 0.7rem 1rem;

    font-size: 0.8rem;
  }
}
