:root {
    --azul-claro-mujeres: #98c1d9;
    --azul-oscuro-mujeres: #3d5a80;
    --azul-oscuro-mujeres-2: #193152;
    --just-white: #FFFFFF;
    --tierra-mujeres: #ee6c4d;
    --gris-claro-mujeres: #eaf4f4;
    --gris-oscuro-mujeres: #293241;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "slnt" 0;
    scroll-behavior: smooth;
}

body {
    font-size: 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
main {
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
/* WHATSAPP */
.float {
    position:fixed;
    width:70px;
    height:70px;
    bottom:40px;
    right:40px;
    background-color: var(--azul-claro-mujeres);
    color: var(--just-white);
    border-radius:50px;
    text-align:center;
  	font-size:48px;
    box-shadow: 2px 2px 3px #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  	z-index:100;
    cursor: pointer;
}
.float:hover {
    background-color: var(--tierra-mujeres);
}
/* WHATSAPP */