header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 1em 1em 1em 1em;
    color: var(--color-arcilla);
}

header a { 
    text-decoration: none;
}

header .brand, header .tagline {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 4px;
    font-weight: 500;
}


/* Contenedor izquierdo - Logo y tagline */
.header-brand-container {
    display: flex;
    flex-direction: row;
    width: 60%;
    gap: 88px;
}



/* Contenedor derecho - Dirección */
.header-address a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-address a:hover {
    opacity: 0.8;
}

.header-address p {
    margin: 0;
    line-height: 1;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    header {
        padding: 1em;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1em;
        gap: 32px;
        background: #f5efe866;
		backdrop-filter: blur(6px);
    }

    .header-brand-container {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header-address {
        width: 100%;
        text-align: left;
    }
}