@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

:root{
  
  --bg-principal: rgb(255, 255, 255);
  --bg-secundario: rgb(50, 118, 156);
  --bg-secundario-light: rgb(218, 45, 45);

  --font-principal: rgb(50, 118, 156);
  --font-secundario: rgb(218, 45, 45);
  --font-ligth: rgb(255,255,255);
  --font-dark:rgb(45, 45, 45);

  --border-principal: rgb(50, 118, 156);

  --shadow-box-mininal: 0px 0px 6px 0px rgba(0,0,0,0.15);
  --shadow-box-center:  0px 0px 20px 0px rgb(0 0 0 / 15%);
  --shadow-box: 0px 20px 20px 0px rgb(0 0 0 / 15%);

  --btn-action: rgb(50, 118, 156);
  --btn-action-hover: rgb(218, 45, 45);

  --input-focus: rgba(245, 135, 50, 0.25);

  --red: hsla(356, 70%, 91%, 0.45);
  --green: hsla(151, 32%, 86%, 0.45);
  --azul: hsla(191, 88%, 90%, 0.45);
}
.bg-red{
  background-color: var(--red);
}
.bg-green{
  background-color: var(--green);
}
.bg-azul{
  background-color: var(--azul);
}
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none !important;
  list-style: none !important;
  margin-block-start: 0em;
  margin-block-end: 0em;
}
.bold{
  font-weight: 700
}
p,span{
  font-size: 0.90rem;
}
h1{
  font-size: 2rem;
}
h2{
  font-size: 1.5rem;
}
h3{
  font-size: 1.2rem;
}
h4,h5,h6{
  font-size: 0.9rem;
}
a{color: var(--font-dark)}

html,
body {
  width: 100%;
  height: 100%;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.invisible {
  display: none !important;
  transition: all 1s;
}

.visible {
  display: block !important;
}

.flex-center-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.flex-center-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.animation-slide {
  animation: slide;
  animation-duration: .4s;
  animation-timing-function: ease;
}

@keyframes slide {
  from {
    transform: translateX(-50px);
  }

  to {
    transform: translateX(0px);
  }
}