/*
--titlefont: Montserrat
--mainfont: Roboto

--contact_gray: #ededed

h2: 43px
interespaciado: 5
altura: 1.5

p: 24/32


section padding: 105px

forms/button

18px/24px

altura barra: 110px 
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --black: #000000;
  --white: #ffffff;
  --gray_dark: #333333;
  --gray_medium: #666666;
  --gray_light: #f5f5f5;
  --gray_border: #e0e0e0;
  --primary_color: #000000;
  --secondary_color: #333333;

  --accent_color: #000000;
  --text_color: #333333;
  --text_light: #666666;
  --text_inverse: #ffffff;

  --bg_color: #ffffff;
  --bg_light: #f5f5f5;
  --bg_dark: #000000;

  --titlefont: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  --mainfont: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;

  --font_size_base: 1rem;
  --font_size_lg: 1.25rem;
  --font_size_xl: 1.5rem;
  --font_size_2xl: 2rem;
  --font_size_3xl: 2.5rem;
  --font_size_4xl: 3rem;
  --font_size_5xl: 3.5rem;
  --font_size_6xl: 4rem;

  --spacing_xs: 0.5rem;
  --spacing_sm: 1rem;
  --spacing_md: 1.5rem;
  --spacing_lg: 2rem;
  --spacing_xl: 3rem;
  --spacing_2xl: 4rem;
  --spacing_3xl: 6rem;
  --spacing_4xl: 8rem;

  --header_height: 100x;
  --header_height_scroll: 90px;

  --header_height_laptop: 90px;
  --header_height_laptop_scroll: 80px;

  --header_height_tablet: 80px;
  --header_height_tablet_scroll: 70px;

  --header_height_mobile: 80px;
  --header_height_mobile_scroll: 70px;

  --transition_fast: 0.15s ease;
  --transition_normal: 0.3s ease;
  --transition_slow: 0.5s ease;

  --form_height: 38px;
  --form_font: 400 18px/1.2 var(--mainfont);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font: 700 43px/1.2 var(--titlefont);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font: 400 24px/32px var(--mainfont);
  color: var(--gray_dark);
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #333333;
}

/*CONTAINER*/
.container_custom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container_custom {
    padding: 0 1.5rem;
  }
}

.text_center {
  text-align: center;
}

.text_uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* SECTIONS */

.demand_section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .demand_section {
    padding: 60px 0;
  }
}

.section_dark {
  background-color: #000000;
  color: #ffffff;
}
.section_dark h1,
.section_dark h2,
.section_dark h3,
.section_dark h4,
.section_dark h5,
.section_dark h6 {
  color: #ffffff;
}

.section_light {
  background-color: #ededed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in {
  animation: fadeIn 0.6s ease;
}

.fade_in_up {
  animation: fadeInUp 0.8s ease;
}

.fade_in_down {
  animation: fadeInDown 0.8s ease;
}

.text-muted {
  color: var(--gray_medium) !important;
}
