/*
 * Ajustes globales:
 * - Header fijo al hacer scroll.
 * - Se conserva el color original de la franja superior.
 * - Iconos en la columna de contacto del footer.
 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: transparent;
    box-shadow: 0 8px 26px rgba(36, 31, 29, .08);
}

/* La franja superior debe conservar fondo oscuro, no heredar el blanco del header */
.site-header .site-topbar {
    background: #241f1d;
    color: #fff;
}

.site-header .site-topbar a,
.site-header .site-topbar span,
.site-header .site-topbar-message {
    color: inherit;
}

.site-header .site-mainbar {
    background: #fff;
}

html {
    scroll-padding-top: 142px;
}

.site-footer-contact-column {
    min-width: 0;
}

.site-footer-contact-column .footer-contact,
.site-footer-contact-column .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    width: 100%;
}

.site-footer-contact-column .footer-contact-item {
    margin: 0 0 .72rem;
    color: inherit;
}

.site-footer-contact-column a.footer-contact-item {
    text-decoration: none;
    transition: color .16s ease, transform .16s ease;
}

.site-footer-contact-column a.footer-contact-item:hover,
.site-footer-contact-column a.footer-contact-item:focus-visible {
    color: #e36208;
    transform: translateX(2px);
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #e36208;
    background: rgba(227, 98, 8, .10);
    margin-top: -.18rem;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-icon svg circle {
    fill: currentColor;
    stroke: none;
}

.footer-contact-text {
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 118px;
    }

    .site-header {
        box-shadow: 0 8px 20px rgba(36, 31, 29, .08);
    }
}

@media (max-width: 575.98px) {
    html {
        scroll-padding-top: 96px;
    }

    .site-topbar {
        display: none;
    }
}
