body {
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: var(--fondo);
}

:root {
    --verde: #113A2C;
    --dorado: #C6A75C;
    --fondo: #1E1E1E;
}

h1,
h2,
h3,
h4,
p,
a {
    color: white;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

p {
    font-weight: 600;
    font-size: 18px;
}

li {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: white;
    margin-bottom: 0;
}

a {
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all .5s ease;
}

figure {
    margin: 0;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.text-gold {
    color: var(--dorado);
}

.text-white {
    color: white;
}

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.header-gap {
    margin-top: 100px;
}

/* Ancla Whatsapp y subir */

.scroll-top:hover,
.whats-float:hover {
    /* box-shadow: 0 0 15px var(--dorado); */
    transform: rotate(360deg);
    scale: 1.1;
}

.whats-float {
    left: 30px;
}

.scroll-top {
    right: 30px;
}

.scroll-top,
.whats-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    cursor: pointer;
    background-color: var(--dorado);
    border-radius: 50%;
    padding: 20px;
    height: 50px;
    width: 50px;
    z-index: 30;
    bottom: 30px;
    border: none;
    transition: all 0.5s ease;
}

.scroll-top i,
.whats-float i {
    font-weight: 600;
    font-size: 20px;
    color: var(--fondo);
}

.btn-grow:hover {
    scale: 1.1;
}

.btn-gold {
    text-align: center;
    border: 1px solid var(--dorado);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    width: fit-content;
}

.btn-gold:hover {
    color: var(--dorado);
}

/* Animaciones */

.breath {
    animation-duration: 2s;
    animation-name: breath;
    animation-iteration-count: infinite;
}

@keyframes breath {
    50% {
        scale: 1.2;
    }
}