/*--------------------------------------------------------------
# Fonts and Color Variables
--------------------------------------------------------------*/
@font-face {
  font-family: "Exo2-Regular";
  src: url("../fonts/Exo_2/static/Exo2-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Exo2-Light";
  src: url("../fonts/Exo_2/static/Exo2-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Exo2-ExtraLight";
  src: url("../fonts/Exo_2/static/Exo2-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AlegreyaSans";
  src: url("../fonts/alegreya-sans/AlegreyaSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Fonts */
:root {
  --default-font: "AlegreyaSans", sans-serif;
  --heading-font: "Exo2-Regular", sans-serif;
  --font-exo2-regular: "Exo2-Regular", sans-serif;
  --font-exo2-light: "Exo2-Light", sans-serif;
  --font-exo2-extra-light: "Exo2-ExtraLight", sans-serif;
  --font-alegreyasans: "AlegreyaSans", sans-serif;
}

/* Colors */
:root {
  --background-color: #032e49;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #004a70;
  --surface-color: #004a70;
  --contrast-color: #032e49;
  --ajalacred-color: #00a03e;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  /* font-family: var(--default-font); */
  padding-top: 4.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.navbar {
  background-color: var(--background-color);
  font-family: var(--font-exo2-regular);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.textura {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.textura::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/fundo_textura.png");
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

.textura2 {
  background-image: url("/assets/img/fundo_textura.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.exo2 {
  font-family: "Exo2-Regular", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 1000;
}

.exo2-texto {
  font-family: "Exo2-Regular", sans-serif;
  font-size: 1.5rem;
  font-weight: 100;
}

.exo2-texto-grande {
  font-family: "Exo2-Regular", sans-serif;
  font-size: 3rem;
  font-weight: 100;
}

.exo2-light {
  font-family: "Exo2-Light", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 100;
}

.exo2-light-texto-branco {
  font-family: "Exo2-Light", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 100;
}

.exo2-extra-light {
  font-family: "Exo2-ExtraLight", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 100;
}

.alegreyasans {
  font-family: "AlegreyaSans", sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

h1 .fw-bold {
  font-weight: 1000;
}

h1 .fw-light {
  font-weight: 500;
}

h3 {
  font-family: "Exo2-Regular", sans-serif;
  font-size: 2rem;
  color: #ffffff;
}

h4 {
  font-family: "Exo2-Light", sans-serif;
  font-size: 1.7rem;
  color: #ffffff;
}

h5 {
  font-family: "Exo2-Regular", sans-serif;
  font-size: 1.7rem;
}

p {
  font-family: "AlegreyaSans", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
}

p .fw-bold {
  font-weight: 1000;
}

.list li {
  font-family: "AlegreyaSans", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
}

.form-label {
  font-family: "AlegreyaSans", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  visibility: hidden;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}