@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
}

.container {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 25.2px;
    margin-bottom: 50px;
}

.nav a {
    text-transform: none; /* el original NO usa uppercase */
}

@media (max-width: 768px) {

    .header-inner {
        height: 90px;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #ffffff;
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        color: var(--text-dark);
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }

    .menu-toggle {
        display: block;
    }
}


