@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fontawesome/webfonts/fa-brands-400.woff2') format("woff2"),
    url('/assets/fontawesome/webfonts/fa-brands-400.ttf') format("truetype");
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fontawesome/webfonts/fa-solid-900.woff2') format("woff2");
}

/* Base Styles */
:root {
  --primary-color: #FF7500;
  --primary-dark: #ff1600;
  --primary-light: #fb8600;
  --secondary-color: #ff4b4b;
  --tertiary-color: #4caf50;
  --quaternary-color: #ff9800;
  --dark-color: #000813;
  --darker-color: #000000;
  --darkest-color: #01050b;
  --light-color: #040b1183;
  --lighter-color: #131313;
  --text-color: #ffffff;
  --text-muted: #e0e0e0;
  --header-background: var(--darker-color);


  --bg-benefit: #ff5a231d;
  --bg-gradient-orange: rgba(255, 107, 53, 0.2);
  --bg-section-alt: #494949;

  --space-xx-small: 2px;
  --space-x-small: 4px;
  --space-small: 8px;
  --space-medium: 16px;
  --spacing-large: 24px;
  --spacing-x-large: 32px;
  --spacing-xx-large: 48px;
  --spacing-xxx-large: 64px;
  --spacing-huge: 92px;

  --font-size-x-small: 0.8rem;
  --font-size-small: 0.9rem;
  --font-size-base: 1rem;
  --font-size-large: 1.1rem;
  --font-size-x-large: 1.2rem;
  --font-size-xx-large: 1.3rem;
  --font-size-xxx-large: 1.4rem;
  --font-size-huge: 1.5rem;
  --font-size-x-huge: 1.6rem;
  --font-size-xx-huge: 1.7rem;
  --font-size-xxx-huge: 1.8rem;
  --font-size-icon: 2rem;

   --header-height: 48px;
   
   --button-height: 48px;
   --button-height-large: 64px;

  --border-radius-x-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 12px;
  --border-radius-x-large: 16px;
  --border-radius-xx-large: 24px;

  --border-radius: var(--border-radius-x-large);
  --card-radius: var(--border-radius-xx-large);

  --shadow-default: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);
  --transition-default: all 0.2s ease;

  --shadow: var(--shadow-default);
  --transition: var(--transition-default);
}

* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

@media (min-width: 600px) {
  html {
    scroll-snap-type: y proximity;
  }
}

section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  background-color: var(--bg-section-alt);

  display: flex;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-display: swap;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--darkest-color);
}

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

ul {
  list-style: none;
}

section>h1,
article>h1,
aside>h1,
nav>h1 {
  font-size: var(--font-size-icon);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content {
  width: 100%;
  max-width: 1440px;
  margin: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: var(--header-height);
}

.badge {
  display: inline-block;
  background-color: var(--bg-gradient-orange);
  color: var(--primary-dark);
  padding: var(--space-medium) var(--spacing-large);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  height: var(--button-height);
}

.button-main:hover {
  background-color: var(--primary-color);
  box-shadow: var(--shadow-orange);
}

.button-main {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-color);
}

@media (min-width: 1024px) {
  .button {
    height: var(--button-height-large);
  }

  :root {
    --header-height: 64px;
  }
}