﻿/* ===== Header global blanco con logo centrado ===== */
.site-header {
    position: sticky; /* queda fijo al hacer scroll */
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06); /* línea sutil inferior */
}

.site-header__inner {
    max-width: 1200px; /* si lo quieres full-bleed, usa 100% */
    margin: 0 auto;
    padding: 50px 16px; /* alto de barra */
    display: flex;
    justify-content: center; /* logo centrado */
    align-items: center;
}

.site-header__brand img {
    height: 80px; /* ajusta a tu gusto */
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .site-header__brand img {
        height: 120px;
    }
}

/* Quitar el margen blanco del body si aún existiera */
html, body {
    margin: 0;
    padding: 0;
}
