@font-face {
    font-family: 'Agrandir';
    src: url('Fonts/Agrandir /PPAgrandir-Variable.ttf') format('truetype');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Onest';
    src: url('Fonts/Onest/Onest-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Azeret Mono';
    src: url('Fonts/Azeret_Mono/AzeretMono-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Azeret Mono Italic';
    src: url('Fonts/Azeret_Mono/AzeretMono-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}
@font-face {
    font-family: 'Onder';
    src: url('Fonts/ONDER_REGULAR/ONDER-REGULAR.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --onder-green: #6f8372;
    --onder-light: #F9F5E8;
    --onder-accent: #d9df89;
    --onder-dark: #2c3327;
    --onder-hover: #b8bf6c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Onest', sans-serif;
    background-color: var(--onder-light);
    color: var(--onder-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
.heading {
    font-family: 'Agrandir', sans-serif;
    text-transform: uppercase;
}

.font-mono {
    font-family: 'Azeret Mono', monospace;
}

.font-agrandir {
    font-family: 'Agrandir', sans-serif;
}

.tracking-extra {
    letter-spacing: 0.3em;
}

.glass-header {
    background: #6f8372;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background-color: var(--onder-accent);
    color: var(--onder-dark);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    /* Onest Bold */
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    /* Onest Medium */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    color: white;
}

.nav-link:hover {
    color: var(--onder-accent);
}

/* Mobile Menu Overlay */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

#mobile-menu.active {
    transform: translateX(0);
}
.descubre-top-img {
    width: 40%;
    margin-bottom: 50px;
}
footer h4 {
    font-family: 'Azeret Mono', monospace;
    font-weight: 700;
    letter-spacing: 0 !important;
}
@media (max-width: 1023px) {
    #mobile-menu {
        width: 100%;
    }
}
@media (max-width: 767px) {
.descubre-top-img {
    width: 90%;
    margin-bottom: 31px;
}
section#ubicacion .py-24 {
    padding-top: 0rem;
    padding-bottom: 2rem;
}
section#ubicacion {
    padding-top: 0;
}

}
.swiper-pagination-bullet-active {
    background: var(--onder-accent) !important;
}