/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  /** Reset para REMS - 62.5% = 10px de 16px **/
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body{
    font-family: 'Poppins', sans-serif;
    color: var(--color-negro);
   
}

/* Variables */

:root {
    --color-blanco: #fff;
  --color-negro: #181A22;
  --color-amarillo: #EFAA39;
  --color-plomo: #D1D1D1;
  
}
html h1 {
    font-size: 3.4rem;
}

html h2 {
    font-size: 3rem;
}

html h3 {
    font-size: 2.4rem;
}

html h4 {
    font-size: 1.4rem;
}

p {
    font-size: 1.6rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
}
figure{
    margin: 0;
    padding: 0;
}

/* Globales */
.contenedor{
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}
.boton{
    display: inline-block;
    text-decoration: none;
    font-size: 1.6rem;
    background-color: var(--color-amarillo);
    color: var(--color-negro);
    padding: 12px 35px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-weight: 500;
}
.boton.boton-2{
    background-color: var(--color-blanco);
    border: 1px solid var(--color-negro);
    color: var(--color-negro);
    padding: 12px 25px;
}
.boton-3{
    display: inline-block;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--color-amarillo);
    background-image: url(../img/iconos/flecha-boton.svg);
    background-repeat: no-repeat;
    background-position: 70px center;
    padding-right: 45px;
}