.Menu_IntimaDevocion {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(38, 52, 47, 0.09);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 8px 30px rgba(38, 52, 47, 0.05);
    backdrop-filter: blur(18px);
}

.container_Menu_Pegajoso {
    display: grid;
    width: 100%;
    max-width: 1240px;
    grid-template-columns: 52px 1fr 100px;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
}

.container_Menu_Amburgesa_IntimaDevocion {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border: 1px solid rgba(38, 52, 47, 0.08);
    border-radius: 50%;
    background: var(--color-crema);
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.container_Menu_Amburgesa_IntimaDevocion:hover {
    background: #eee5d2;
    transform: translateY(-2px);
}

img.menu_aburgesa_IntimaDevocion,
img.menu_Cruz_IntimaDevocion {
    display: block;
    width: 100%;
    max-width: 22px;
    height: 22px;
    object-fit: contain;
    filter:
        brightness(0)
        saturate(100%)
        invert(17%)
        sepia(9%)
        saturate(1090%)
        hue-rotate(108deg)
        brightness(94%)
        contrast(88%);
}

.marca_TiempoFinal {
    justify-self: center;
    text-decoration: none;
}

.titulo_Menu_IntimaDevocion {
    text-align: center;
}

.titulo_Menu_IntimaDevocion span {
    display: block;
    margin-bottom: 1px;
    color: var(--color-dorado-oscuro);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.titulo_Menu_IntimaDevocion h1 {
    margin: 0;
    color: var(--color-olivo);
    font-family: "Merriweather", serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
}

.container_Buscador_IntimaDevocion {
    justify-self: end;
}

img.buscar_Noticias {
    display: block;
    width: 100%;
    max-width: 96px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .Menu_IntimaDevocion {
        padding: 13px 24px;
    }

    .container_Menu_Pegajoso {
        grid-template-columns: 62px 1fr 180px;
    }

    .container_Menu_Amburgesa_IntimaDevocion {
        width: 48px;
        height: 48px;
    }

    .titulo_Menu_IntimaDevocion span {
        font-size: 11px;
    }

    .titulo_Menu_IntimaDevocion h1 {
        font-size: 27px;
    }

    img.buscar_Noticias {
        max-width: 155px;
    }
}