/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    color: #000;
    background: #fff;
    margin-left: 300px; /* Offset para el menú lateral */
}

h1 {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

/* Navegador Lateral (Desktop) */
#navegador {
    width: 300px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    background: #fff;
    border-right: 1px solid #000;
    z-index: 1000;
}

.logo img {
    width: 66%;
    display: block;
    margin: 0 auto 20px auto;
}

.menu li {
    font-family: "Cinzel Decorative", serif;
    text-align: center;
    list-style: none;
    margin-bottom: 15px;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    display: block;
}

.redes-sociales {
    margin-top: 30px;
    text-align: center;
}

.redes-sociales a {
    color: #000;
    font-size: 20px;
    margin-right: 15px;
}

/* Menú Mobile */
.menu-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #000;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo-mobile img {
    height: 40px;
}

#btn-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.menu-mobile-content {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    z-index: 999;
    border-bottom: 1px solid #000;
}

.menu-mobile-content ul {
    list-style: none;
}

.menu-mobile-content li {
    margin-bottom: 15px;
}

.menu-mobile-content a {
    font-family: "Cinzel Decorative", serif;
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.redes-sociales-mobile {
    margin-top: 20px;
}

.redes-sociales-mobile a {
    color: #000;
    font-size: 20px;
    margin-right: 15px;
}

/* Smooth scroll general */
html {
    scroll-behavior: smooth;
}

/* Ajuste para desplazamiento suave en secciones */
section {
    scroll-margin-top: 80px; /* Ajusta según tu header/nav */
}

/* Responsive */
@media (max-width: 768px) {
    body {
        margin-left: 0;
    }

    #navegador {
        display: none;
    }

    .menu-mobile {
        display: flex;
    }

    .menu-mobile-content.activo {
        display: block;
    }
}