
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Ultra.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-blue: #1b1e8c;
  --color-blue-dark: #12145e;
  --color-red: #e2231a;
  --color-red-dark: #b81b14;

  --fondo1: url(../assets/images/back.jpg);

  --color-menu:#110138;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-gray:#f6f5f5;

  --color-gray-light: #f2f2f2;
  --color-gray-medium: #cfcfcf;
  --color-gray-dark: #9c9c9c;
  --gradient-gray: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-gray-dark) 100%);


  --color-text: var(--color-black);
  --color-text-muted: #555555;
  --color-bg: var(--color-gray);

  --font-family-base: "Gotham", "Segoe UI", Arial, Helvetica, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;

  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-bold-menu:600;

  --line-height-base: 1.5;
  --line-height-heading: 1.2;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --section-padding-y: var(--space-7);
  --section-padding-x: var(--space-4);

  --container-max-width: 1200px;
  --border-width: 1px;
  --transition-base: 0.2s ease;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-heading);
  font-weight: var(--fw-bold);
}

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

ul, ol {
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section-divider {
  width: 100%;
  height: var(--space-2);
  background: var(--gradient-gray);
}

