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 - Styles moved to base.html for reliability */

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

.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;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--fondo);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    width: 120px;
    height: 120px;
    color: var(--dorado);
}

.loader-container svg {
    width: 100%;
    height: 100%;
}