:root {
    --sombra: 3px 3px 10px 0px #00000024;
    --sombraTop: 3px -3px 5px 0px #00000026;

    /*===================*/
    /* colores generales */
    /*===================*/
    --color1: #e1251b;
    --color1Hover: #ca2118;

    --color2: #202938;
    --color2Hover: #202630;

    --color3: #e5e5e5;
    --color3Hover: #202630;

    --backgroundBody: #ffffff;

    --backgroundContacto: #EFF3F4;

    /*===================*/
    /* textos */
    /*===================*/
    --textoOscuro: #333333;
    --textoClaro: #ffffff;


    /*===================*/
    /* header nav */
    /*===================*/
    --anchoLogoNav: 202px;
    --anchoLogoNavMovil: 196px;
    --fondoNav: var(--color2);
    --textoNav: #ffffff;
    --textoNavMovil: #ffffff;
    --underlineNav: #e1251b;
    --colorBtnMenu: #e1251b;

    /*===================*/
    /* Footer */
    /*===================*/
    --anchoLogoFooter: 250px;
    --backgroundFooterTop: #202938;
    --backgroundFooterBot: #333333;
    --textoFooter: #ffffff;
    --textoFooter2: #333333;


}

*,
h1,
h2,
h3,
h4,
h5,
p,
ul,
figure {
    margin: 0px;
    padding: 0px;
}

br {
    display: none;
}

.mainNavFixed {
    margin-top: 76px;
}

.mainNavRelative {
    margin-top: 0px;
}

@media (max-width: 991px) {
    .mainNavFixed {
        margin-top: 60px;
    }
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--textoOscuro);
    background-color: var(--backgroundBody);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*========================*/
/* efecto aparecer */
/*========================*/
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/*========================*/
/* titulos */
/*========================*/
._root-titulos-titulo1 {
  color: var(--color1);
  font-weight: 700;
  font-size: 25px;
}

._root-titulos-titulo2 {
  color: var(--color1);
  font-weight: 700;
  font-size: 20px;
}

._root-titulos-contTitulo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

._root-titulos-titulo3 {
  color: var(--color1);
  font-weight: 700;
  font-size: 25px;
}

._root-titulos-spanTitulo3 {
  color: var(--color1);
}

._root-titulos-titulo4 {
  color: var(--textoOscuro);
  font-weight: 500;
  font-size: 20px;
}

._root-titulos-contBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

._root-titulos-btn {
  background-color: var(--color2);
  color: var(--textoClaro);
  width: 200px;
  border: none;
  border-radius: 5px;
  height: 35px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  &:hover {
    background-color: var(--color2Hover);
    color: var(--textoClaro);

  }
}

/*========================*/
/* botones */
/*========================*/
._root-botones-contBtns {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
}

._root-botones-btn {
  border: none;
  height: 45px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

._root-botones-btnL {
  background-color: var(--color1);
  color: var(--textoClaro);
  transition: .3s;
  width: 200px;

  &:hover {
    background-color: var(--color1Hover);
  }
}

._root-botones-btnR {
  background-color: var(--color2);
  color: var(--textoClaro);
  transition: .3s;
  width: 200px;
  margin-left: -37px;

  &:hover {
    background-color: var(--color2Hover);
  }
}

._root-botones-contBtnsNoGastes {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

._root-botones-btnLNoGastes {
  background-color: #fff;
  color: var(--textoOscuro);
  transition: .3s;
  width: 200px;
}
