/* estilos css del menu */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #faf6f0;
    color: #3f2216;
}

.menu-principal {
    background-color: #e6d9c8;
    border-bottom: 1px solid rgba(166, 107, 69, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
}


.menu-logo-enlace {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0; /* Quitamos cualquier padding extra */
    margin: 0;  /* Aseguramos que no tenga margen */
}

.menu-logo-img {
    height: 3.2rem; /* Subimos un poco el tamaño (antes estaba en 2.5rem) */
    width: auto;    
    object-fit: contain;
}


.menu-enlaces {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.menu-enlaces a {
    text-decoration: none;
    color: #3f2216;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-enlaces a:hover {
    color: #a66b45;
}

.menu-toggle,
.menu-icono {
    display: none;
}

@media (max-width: 768px) {
    .menu-icono {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }

    .menu-enlaces {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #e6d9c8;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(166, 107, 69, 0.2);
    }

    .menu-toggle:checked ~ .menu-enlaces {
        display: flex;
    }
}



/* estilos css del footer */
/* --- Estilos del Pie de Página (Footer en Columnas) --- */
.pie-pagina {
    background-color: #2c160e; /* Tono marrón oscuro elegante */
    color: #e6d9c8;
    padding: 3rem 2rem 1.5rem 2rem;
}

.pie-contenedor {
    max-width: 75rem;
    margin: 0 auto;
}

/* Distribución en columnas con Flexbox para PC */
.pie-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
}

.pie-columna {
    flex: 1;
    min-width: 14rem;
}

.pie-logo {
    width: 9rem;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.pie-descripcion {
    font-size: 0.95rem;
    color: rgba(230, 217, 200, 0.8);
    line-height: 1.5;
}

.pie-subtitulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #e6d9c8;
}

.pie-enlaces {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pie-enlaces a {
    text-decoration: none;
    color: rgba(230, 217, 200, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.pie-enlaces a:hover {
    color: #a66b45;
}

.pie-texto {
    font-size: 0.95rem;
    color: rgba(230, 217, 200, 0.8);
}

/* Iconos de redes sociales */
.pie-redes {
    display: flex;
    gap: 1rem;
}

.pie-redes a {
    color: #e6d9c8;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.pie-redes a:hover {
    color: #a66b45;
}
.icono-redes {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(93%) sepia(10%) saturate(417%) hue-rotate(345deg) brightness(96%) contrast(91%);
    transition: transform 0.3s ease;
}

/* Línea divisoria */
.pie-divisor {
    border: none;
    border-top: 1px solid rgba(166, 107, 69, 0.3);
    margin-bottom: 1.5rem;
}

/* Copyright inferior */
.pie-copy {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(230, 217, 200, 0.6);
}

/* Responsive para celulares y tablets */
@media (max-width: 768px) {
    .pie-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .pie-columna {
        min-width: 100%;
    }
    .pie-redes {
        justify-content: center;
    }
}